* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nav-brand h2 {
    color: #c8112d;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #c8112d;
  }
  
  .login-btn {
    background: #c8112d;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
  }
  
  .login-btn:hover {
    background: #520b16;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
  }
  
  /* Carousel */
  .carousel-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .carousel-slide.active {
    opacity: 1;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
  }
  
  .carousel-content::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -90px;
    right: -90px;
    bottom: -50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    z-index: -1;
  }
  
  .carousel-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .cta-button {
    background: #c8112d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #520b16;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .indicator.active {
    background: white;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 3;
  }
  
  .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .carousel-btn.prev {
    left: 2rem;
  }
  
  .carousel-btn.next {
    right: 2rem;
  }
  
  /* Sections */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* About Section */
  .about-section {
    padding: 6rem 0;
    background: #f9fafb;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
  }
  
  .about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #c8112d;
    margin-bottom: 0.5rem;
  }
  
  .stat p {
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  /* Plans Section */
  .plans-section {
    padding: 6rem 0;
    background: white;
  }
  
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .plan-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .plan-card.featured {
    border-color: #c8112d;
    transform: scale(1.05);
  }
  
  .plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #004aad;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .plan-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 1rem;
  }
  
  .price {
    margin-bottom: 2rem;
  }
  
  .currency {
    font-size: 1.2rem;
    color: #6b7280;
  }
  
  .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #c8112d;
  }
  
  .period {
    font-size: 1rem;
    color: #6b7280;
  }
  
  .plan-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .plan-features li {
    padding: 0.5rem 0;
    color: #6b7280;
  }
  
  .plan-button {
    width: 100%;
    background: #c8112d;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .plan-button:hover {
    background: #520b16;
  }
  
  /* Partners Section */
  .partners-section {
    padding: 6rem 0;
    background: #f9fafb;
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
  }
  
  .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .partner-logo:hover {
    transform: translateY(-2px);
  }
  
  .partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .partner-logo:hover img {
    opacity: 1;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 6rem 0;
    background: white;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-content p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-weight: 600;
    color: #1f2937;
  }
  
  .author-info p {
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer {
    background: #093269;
    color: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    color: #c8112d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #10b981;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.5rem;
  }
  
  .social-link:hover {
    color: #10b981;
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
    color: #9ca3af;
  }

  .contact-info p a {
    text-decoration: none;
    color: #f9fafb;
  }


  
  .footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      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;
    }
  
    .carousel-content h1 {
      font-size: 2rem;
    }
  
    .carousel-content p {
      font-size: 1rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .stats {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .plans-grid {
      grid-template-columns: 1fr;
    }
  
    .plan-card.featured {
      transform: none;
    }
  
    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  
    .carousel-btn.prev {
      left: 1rem;
    }
  
    .carousel-btn.next {
      right: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .nav {
      padding: 1rem;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .carousel-content h1 {
      font-size: 1.5rem;
    }
  
    .about-section,
    .plans-section,
    .partners-section,
    .testimonials-section {
      padding: 4rem 0;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Loading animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease-out;
  }
  