/* Modern CSS with Mobile-First Approach - Different from previous site */
:root {
  --primary-color: #FF4081;
  --secondary-color: #3D0C41;
  --accent-color: #FF90BC;
  --light-color: #FFFFFF;
  --dark-color: #222222;
  --background-color: #FCEEF5;
  --font-main: 'Roboto', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--dark-color);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo h1 {
  color: var(--light-color);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 1.8rem;
  cursor: pointer;
  display: block;
}

.nav-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu ul {
  list-style: none;
}

.nav-menu li {
  margin-bottom: 15px;
}

.nav-menu a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

/* Banner Section */
.banner {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  color: var(--light-color);
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 144, 188, 0.3);
  z-index: 1;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(255, 144, 188, 0.2);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.banner p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 64, 129, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 64, 129, 0.5);
}

/* Benefits Section */
.benefits {
  padding: 60px 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.benefit-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.4rem;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: var(--background-color);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 144, 188, 0.3) 0%, rgba(252, 238, 245, 0) 70%);
  z-index: 1;
}

.features-container {
  position: relative;
  z-index: 2;
}

.feature {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--light-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-content {
  flex: 1;
}

.feature h3 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.4rem;
}

/* How It Works */
.how-it-works {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.steps {
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding: 0 0 30px 70px;
  margin-bottom: 30px;
}

.step:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.step::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  height: calc(100% - 50px);
  width: 2px;
  background-color: var(--primary-color);
}

.step:last-child::after {
  display: none;
}

.step h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-color);
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background-color: var(--light-color);
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 18px 20px;
  background-color: var(--background-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9e0eb;
}

.accordion-header::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 1000px;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--light-color);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 25px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.copyright {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .logo h1 {
    font-size: 1.8rem;
  }
  
  .menu-btn {
    display: none;
  }
  
  .nav-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    padding: 0;
  }
  
  .nav-menu ul {
    display: flex;
    gap: 25px;
  }
  
  .nav-menu li {
    margin-bottom: 0;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
