:root {
  --primary-color: #0F1021;
  --secondary-color: #000957;
  --accent-color: #FB90B7;
  --light-color: #FEFAE0;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #0F1021 0%, #344CB7 100%);
  --hover-color: #344CB7;
  --background-color: #FEFAE0;
  --text-color: #0F1021;
  --border-color: rgba(15, 16, 33, 0.3);
  --divider-color: rgba(15, 16, 33, 0.2);
  --shadow-color: rgba(15, 16, 33, 0.15);
  --highlight-color: #FFEB00;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.neumorphism {
  box-shadow: 8px 8px 16px var(--shadow-color),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  border-radius: 16px;
}

.neumorphism-inset {
  box-shadow: inset 8px 8px 16px var(--shadow-color),
    inset -8px -8px 16px rgba(255, 255, 255, 0.8);
  border-radius: 16px;
}

header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(254, 250, 224, 0.95);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 24px;
  height: 18px;
}

.hamburger span {
  height: 2px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 16, 33, 0.8), rgba(52, 76, 183, 0.6)),
    url('./img/bg.jpg') center/cover fixed;
  color: var(--light-color);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,235,0,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(251,144,183,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,235,0,0.1)"/><circle cx="10" cy="50" r="1.5" fill="rgba(251,144,183,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,235,0,0.1)"/></svg>') repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: var(--light-color);
  box-shadow: 0 8px 20px rgba(15, 16, 33, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(15, 16, 33, 0.4);
}

.about-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-family: var(--main-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.features-section {
  padding: 6rem 0;
  background: var(--background-color);
}

.section-title {
  text-align: center;
  font-family: var(--main-font);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--light-color);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--light-color);
}

.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(15, 16, 33, 0.8), rgba(52, 76, 183, 0.6)),
    url('./img/bg.jpg') center/cover fixed;
  color: var(--light-color);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--main-font);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--background-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section {
  padding: 6rem 0;
  background: var(--background-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-form {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  background: var(--background-color);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.faq-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.faq-item {
  background: var(--background-color);
  margin-bottom: 1rem;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

footer {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer-nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .navigation.active {
    left: 0;
  }

  .navigation ul {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .navigation a {
    font-size: 1.5rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}