:root {
  --bg-dark: #393536;
  --bg-light: #393536;
  --accent: #f9a523;
  --text-main: #ffffff;
  --text-secondary: #d0d0d0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  background: radial-gradient(circle at top, var(--bg-light), var(--bg-dark));
}

body {
  min-height: 100vh;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.container {
  max-width: 700px;
  text-align: center;
  padding: 3rem 2rem;
}

.logo {
  /* border: 2px solid var(--text-main);
  border-radius: 12px; */
  padding: 1rem 2rem;
  display: inline-block;
  margin-bottom: 2rem;
  img {
    width: 300px;
  }
}

.logo h1 {
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.icon {
  margin: 2rem;
  img {
    width: 200px;
  }
}

.services {
  font-size: 1rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  a {
    color: var(--accent);
    text-decoration: none;
  }
}

.contact-item span {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 480px) {
  .subtitle {
    font-size: 1.8rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }
}