:root {
  --primary-color: #344CB7;
  --secondary-color: #577BC1;
  --accent-color: #D01257;
  --light-color: #ECE852;
  --dark-color: #000957;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #577BC1 100%);
  --hover-color: #283A95;
  --background-color: #FEFAE0;
  --text-color: #000957;
  --border-color: rgba(208, 18, 87, 0.2);
  --divider-color: rgba(52, 76, 183, 0.1);
  --shadow-color: rgba(0, 9, 87, 0.15);
  --highlight-color: #FB90B7;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Neumorphism styles */
.neumorphic {
  background: var(--light-color);
  border-radius: 25px;
  box-shadow:
    10px 10px 20px var(--shadow-color),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.neumorphic-inset {
  background: var(--light-color);
  border-radius: 20px;
  box-shadow:
    inset 8px 8px 16px var(--shadow-color),
    inset -8px -8px 16px rgba(255, 255, 255, 0.95);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--light-color);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo img {
  height: 55px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--main-font);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.navigation a:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-color);
}

#mobile-menu-checkbox {
  display: none;
}

/* Hero Section */
.hero {
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(52, 76, 183, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 3rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-family: var(--main-font);
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow:
    6px 6px 12px rgba(208, 18, 87, 0.4),
    -3px -3px 8px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  background: var(--highlight-color);
  transform: translateY(-3px);
  box-shadow:
    8px 8px 16px rgba(208, 18, 87, 0.5),
    -4px -4px 10px rgba(255, 255, 255, 0.4);
}

/* Two Column Sections */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.two-column img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow:
    12px 12px 24px var(--shadow-color),
    -6px -6px 16px rgba(255, 255, 255, 0.7);
}

.content-text h2 {
  font-family: var(--main-font);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.content-text p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--light-color);
}

.features h2 {
  text-align: center;
  font-family: var(--main-font);
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--light-color);
  padding: 2.5rem;
  text-align: center;
  border-radius: 25px;
  box-shadow:
    10px 10px 20px var(--shadow-color),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    15px 15px 30px var(--shadow-color),
    -15px -15px 30px rgba(255, 255, 255, 0.9);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.feature-card p {
  line-height: 1.7;
  font-size: 1.05rem;
}

/* CTA Sections */
.cta-section {
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 9, 87, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-section h2 {
  font-family: var(--main-font);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--background-color);
}

.testimonials h2 {
  text-align: center;
  font-family: var(--main-font);
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow:
    10px 10px 20px var(--shadow-color),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
}

.testimonial cite {
  font-weight: 700;
  color: var(--accent-color);
  font-style: normal;
  font-family: var(--main-font);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--main-font);
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.contact-info p {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--background-color);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow:
    inset 8px 8px 16px var(--shadow-color),
    inset -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 15px;
  background: var(--light-color);
  box-shadow:
    inset 6px 6px 12px var(--shadow-color),
    inset -6px -6px 12px rgba(255, 255, 255, 0.95);
  font-family: var(--alt-font);
  font-size: 1.05rem;
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow:
    inset 8px 8px 16px var(--shadow-color),
    inset -8px -8px 16px rgba(255, 255, 255, 0.95),
    0 0 0 3px var(--accent-color);
}

.submit-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-family: var(--main-font);
  font-size: 1.15rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow:
    6px 6px 12px rgba(208, 18, 87, 0.4),
    -3px -3px 8px rgba(255, 255, 255, 0.3);
}

.submit-button:hover {
  background: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow:
    8px 8px 16px rgba(208, 18, 87, 0.5),
    -4px -4px 10px rgba(255, 255, 255, 0.4);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: var(--background-color);
}

.faq h2 {
  text-align: center;
  font-family: var(--main-font);
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.faq-item {
  background: var(--light-color);
  margin-bottom: 2rem;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow:
    10px 10px 20px var(--shadow-color),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.faq-item h3 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.faq-item p {
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 1.5rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 600;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-color);
    border-top: 2px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 8px 16px var(--shadow-color);
  }

  #mobile-menu-checkbox:checked+.header-container .navigation {
    max-height: 350px;
  }

  .navigation ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }

  .features h2,
  .testimonials h2,
  .faq h2 {
    font-size: 2.5rem;
  }

  .content-text h2 {
    font-size: 2.3rem;
  }
}