/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a35;
    color: #ffffff;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #7b8af7;
    margin-bottom: 2rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  section {
    padding: 5rem 0;
  }
  
  /* Button Styles */
  .btn-primary {
    background-color: #ff9a9e;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #ff8289;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #7b8af7;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #7b8af7;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: rgba(123, 138, 247, 0.1);
  }
  
  .btn-text {
    background-color: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-text:hover {
    color: #ff9a9e;
  }
  
  /* Header Styles */
  header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 53, 0.95);
    backdrop-filter: blur(10px);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #7b8af7;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 2rem;
  }
  
  nav ul li a {
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ff9a9e;
  }
  
  /* Hero Section Styles */
  .hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: url('./assets/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 53, 0.8);
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-content h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .hero-content h2 span {
    color: #ff9a9e;
  }
  
  .hero-form {
    flex: 1;
    max-width: 400px;
    background-color: rgba(26, 26, 53, 0.9);
    padding: 2rem;
    border-radius: 10px;
  }
  
  .hero-form form {
    display: flex;
    flex-direction: column;
  }
  
  .hero-form input {
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
  }
  
  .hero-form .phone-input {
    display: flex;
    margin-bottom: 1rem;
  }
  
  .hero-form .country-code {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: #ffffff;
    border-radius: 5px 0 0 5px;
  }
  
  .hero-form .country-code img {
    height: 20px;
    margin-right: 5px;
  }
  
  .hero-form .phone-input input {
    border-radius: 0 5px 5px 0;
    margin-bottom: 0;
    flex: 1;
  }
  
  .hero-form button {
    width: 100%;
  }
  
  /* Testimonials Section Styles */
  .testimonials {
    background-color: #13132a;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: #1a1a35;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  /* Modules Section Styles */
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .module-card {
    text-align: center;
    background-color: #13132a;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .module-card:hover {
    transform: translateY(-5px);
  }
  
  .module-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #7b8af7 100%);
  }
  
  .module-icon img {
    width: 30px;
    height: 30px;
  }
  
  .module-card h3 {
    color: #ffffff;
  }
  
  /* Premium Section Styles */
  .premium {
    background-color: #13132a;
    text-align: center;
  }
  
  .premium p {
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .premium-feature {
    background-color: #1a1a35;
    padding: 2rem;
    border-radius: 10px;
  }
  
  /* Simulator Section Styles */
  .simulator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .simulator-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e 0%, #7b8af7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .simulator-icon img {
    width: 60px;
    height: 60px;
  }
  
  .simulator-chat {
    max-width: 500px;
  }
  
  .simulator-example {
    background-color: #13132a;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0 2rem;
  }
  
  .simulator-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* How It Works Section Styles */
  .how-it-works {
    background-color: #13132a;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .step {
    text-align: center;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e 0%, #7b8af7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
  }
  
  /* Results Section Styles */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .result-card {
    background-color: #13132a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
  }
  
  .percentage {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .result-card:first-child .percentage {
    color: #ff9a9e;
  }
  
  .result-card:last-child .percentage {
    color: #7b8af7;
  }
  
  /* Articles Section Styles */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .article-card {
    background-color: #13132a;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .article-card h3, .article-card p {
    padding: 0 1.5rem;
  }
  
  .article-card h3 {
    margin-top: 1.5rem;
  }
  
  .article-card p {
    margin-bottom: 1.5rem;
  }
  
  /* Community Section Styles */
  .community {
    background-color: #13132a;
    text-align: center;
  }
  
  .community-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .community-quote {
    background-color: #1a1a35;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .community-quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  
  .community-quote span {
    color: #7b8af7;
  }
  
  .community-input {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
  }
  
  .community-input input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
  }
  
  .community-input button {
    border-radius: 0 5px 5px 0;
  }
  
  /* Contact Section Styles */
  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .contact-item h3 {
    color: #7b8af7;
  }
  
  /* Footer Styles */
  footer {
    background-color: #0c0c1e;
    padding: 3rem 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
  }
  
  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .footer-logo h3 {
    margin-bottom: 0;
    color: #7b8af7;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff9a9e;
  }
  
  .footer-copyright {
    text-align: center;
    color: #7b8af7;
  }
  
  /* Cookie Popup Styles */
  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 400px;
    background-color: #13132a;
    border-radius: 10px;
    padding: 2rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .cookie-popup.show {
    display: block;
  }
  
  .cookie-content h3 {
    text-align: center;
  }
  
  .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Thank You Popup Styles */
  .thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 19, 42, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  .thank-you-popup.show {
    display: flex;
  }
  
  .thank-you-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
  }
  
  .thank-you-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .thank-you-logo img {
    height: 30px;
    margin-right: 10px;
  }
  
  .thank-you-logo h3 {
    margin-bottom: 0;
    color: #7b8af7;
  }
  
  .thank-you-content p {
    color: #1a1a35;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    nav {
      display: none;
    }
    
    .hero .container {
      flex-direction: column;
    }
    
    .hero-content, .hero-form {
      max-width: 100%;
    }
    
    .hero-content {
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .hero-content h2 {
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    h2 {
      font-size: 2rem;
    }
    
    .hero-content h2 {
      font-size: 2.5rem;
    }
    
    .community-input {
      flex-direction: column;
    }
    
    .community-input input {
      border-radius: 5px;
      margin-bottom: 1rem;
    }
    
    .community-input button {
      border-radius: 5px;
    }
    
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-logo {
      margin-bottom: 2rem;
      justify-content: center;
    }
    
    .footer-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 3rem 0;
    }
    
    .hero {
      padding-top: 8rem;
    }
    
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .simulator-buttons {
      flex-direction: column;
    }
    
    .cookie-popup {
      left: 10px;
      right: 10px;
      max-width: calc(100% - 20px);
    }
  }

.main-section {
    background: #fff;
    padding: 100px 0px;
    color: #333;
    padding-top: 200px;
}

.main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
}