/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333333;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header and Navigation */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo h2 {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fbe4e9;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fbe4e9;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  padding: 100px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #333333;
  box-shadow: 0 20px 40px rgba(251, 228, 233, 0.3);
}

/* Features Hero */
.features-hero,
.about-hero,
.contact-hero {
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  padding: 120px 0 80px;
  text-align: center;
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #fbe4e9 0%, #f8d1d8 100%);
  color: #333333;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(251, 228, 233, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 228, 233, 0.4);
}

.submit-button {
  background: linear-gradient(135deg, #fbe4e9 0%, #f8d1d8 100%);
  color: #333333;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 228, 233, 0.4);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #fbe4e9;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbe4e9 0%, #f8d1d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #333333;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.benefit-card p {
  color: #666666;
  line-height: 1.6;
}

/* Trust Signals */
.trust-signals {
  padding: 80px 0;
  background-color: #fbe4e9;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  padding: 2rem;
}

.trust-item i {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #666666;
  font-size: 1.1rem;
}

/* Feature Sections */
.feature-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.feature-section.alt {
  background-color: #fbe4e9;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333333;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #666666;
}

.feature-list i {
  color: #fbe4e9;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-illustration {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #333333;
  box-shadow: 0 15px 35px rgba(251, 228, 233, 0.3);
}

/* About Sections */
.about-section,
.mission-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-content,
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2,
.mission-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333333;
}

.about-text p,
.mission-text p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image,
.mission-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration,
.mission-illustration {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #333333;
  box-shadow: 0 15px 35px rgba(251, 228, 233, 0.3);
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background-color: #fbe4e9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.value-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbe4e9 0%, #f8d1d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #333333;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.value-card p {
  color: #666666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666666;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbe4e9 0%, #f8d1d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333333;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

.contact-details p {
  color: #666666;
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #fbe4e9;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333333;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #fbe4e9;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f8d1d8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #fbe4e9;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333333;
}

.faq-item p {
  color: #666666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fbe4e9 0%, #ffffff 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fbe4e9;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-illustration {
    width: 200px;
    height: 200px;
    font-size: 3rem;
  }

  .feature-content,
  .about-content,
  .mission-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .benefits-grid,
  .values-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0;
    min-height: 60vh;
  }

  .features-hero,
  .about-hero,
  .contact-hero {
    padding: 80px 0 60px;
  }

  .feature-section,
  .about-section,
  .mission-section,
  .contact-section {
    padding: 60px 0;
  }

  .benefits,
  .values-section,
  .team-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .benefit-card,
  .value-card,
  .contact-form-container {
    padding: 1.5rem;
  }

  .feature-illustration,
  .about-illustration,
  .mission-illustration {
    width: 150px;
    height: 150px;
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.value-card,
.feature-section,
.about-section,
.mission-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
