:root {
    --primary-blue: #2775bb;
    --light-blue: #31b0e5;
    --orange: #f16823;
    --gold: #f2b51c;
    --black: #000000;
    --gray: #a7a9ac;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Prompt', sans-serif;
    overflow-x: hidden;
  }

  /* Navbar */
  .navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .brand-logo {
    width: 100px;
  }

  .navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 20px !important;
    transition: all 0.3s;
    position: relative;
  }

  .navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
  }

  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
    transition: all 0.3s;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover::after {
    width: 80%;
  }

  .nav-icons {
    display: flex;
    gap: 10px;
  }

  .nav-icons .btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    color: var(--gray);
    transition: all 0.3s;
    background: white;
  }

  .nav-icons .btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
  }

  .nav-btns {
    display: flex;
    gap: 10px;
  }

  .nav-btns .btn-gold {
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
  }

  .nav-btns .btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(241, 104, 35, 0.4);
    color: white;
  }

  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    min-height: 750px;
    position: relative;
    overflow: hidden;
  }

  .hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 104, 35, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.7;
  }

  .hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
  }

  .hero-features li {
    color: white;
    padding: 8px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-features li i {
    color: var(--gold);
    font-size: 1.2rem;
  }

  .hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .hero-image-wrapper {
    position: relative;
    z-index: 2;
  }

  .hero-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border: 10px solid rgba(255, 255, 255, 0.15);
  }

  .floating-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  .floating-card-1 {
    top: 10%;
    right: -50px;
  }

  .floating-card-2 {
    bottom: 15%;
    left: -30px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 12px;
  }

  .icon-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
  }

  .icon-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: white;
  }

  /* Work Life Balance Section */
  .balance-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    padding: 100px 0;
    position: relative;
  }

  .balance-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .balance-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
  }

  .balance-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.3);
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
  }

  .feature-list li {
    padding: 18px 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    font-weight: 500;
  }

  .feature-list li i {
    color: white;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
  }

  /* Stats Section */
  .stats-section {
    padding: 100px 0;
    background: white;
  }

  .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 60px;
  }

  .stat-box {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(39, 117, 187, 0.12);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  }

  .stat-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(39, 117, 187, 0.18);
    border-color: var(--light-blue);
  }

  .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
  }

  /* Income Section */
  .income-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
  }

  .income-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
  }

  .income-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 55px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 2;
  }

  .income-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .income-card .subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
  }

  .income-list {
    list-style: none;
    padding: 0;
  }

  .income-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .income-list li:last-child {
    border-bottom: none;
  }

  .income-list li:before {
    content: "✓";
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .income-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    border: 8px solid rgba(255, 255, 255, 0.2);
  }

  /* Products Section */
  .products-section {
    padding: 100px 0;
    background: #f8f9fa;
  }

  .product-item {
    text-align: center;
    transition: all 0.3s;
  }

  .product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(39, 117, 187, 0.12);
    transition: all 0.4s;
    position: relative;
  }

  .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: all 0.4s;
  }

  .product-item:hover .product-image {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(39, 117, 187, 0.2);
  }

  .product-item:hover .product-image::before {
    opacity: 0.1;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-name {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
  }

  /* Promotions */
  .promotions-section {
    padding: 100px 0;
    background: white;
  }

  .promo-card {
    border-radius: 30px;
    padding: 55px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  }

  .promo-card-1 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  }

  .promo-card-2 {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  }

  .promo-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
  }

  .promo-card p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.7;
  }

  .promo-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 150px;
    opacity: 0.15;
  }

  /* World Section */
  .world-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
  }

  .world-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 22px;
  }

  .world-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .world-map {
    margin: 60px 0;
    position: relative;
  }

  .world-map img {
    border-radius: 25px;
    opacity: 0.85;
  }

  /* Team Section */
  .team-section {
    padding: 100px 0;
    background: #f8f9fa;
  }

  .team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .team-member {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 30px rgba(39, 117, 187, 0.12);
    transition: all 0.4s;
  }

  .team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: all 0.4s;
  }

  .team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(39, 117, 187, 0.2);
  }

  .team-member:hover::after {
    opacity: 0.2;
  }

  .team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* FAQ Section */
  .faq-section {
    padding: 100px 0;
    background: white;
  }

  .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(39, 117, 187, 0.08);
  }

  .accordion-button {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 28px 35px;
    border: none;
  }

  .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    box-shadow: none;
  }

  .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  .accordion-body {
    padding: 28px 35px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
  }

  .commission-table {
    margin: 20px 0;
    background: rgba(39, 117, 187, 0.05);
    padding: 20px;
    border-radius: 12px;
  }

  .commission-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .commission-table li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(39, 117, 187, 0.1);
  }

  .commission-table li:last-child {
    border-bottom: none;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 60s linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .cta-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .cta-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
  }

  /* Buttons */
  .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    transition: all 0.4s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(39, 117, 187, 0.3);
  }

  .btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(39, 117, 187, 0.4);
    color: white;
  }

  .btn-outline-custom {
    background: transparent;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: 3px solid white;
    transition: all 0.4s;
    display: inline-block;
    text-decoration: none;
  }

  .btn-outline-custom:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-4px);
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    transition: all 0.4s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(241, 104, 35, 0.3);
  }

  .btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(241, 104, 35, 0.4);
    color: white;
  }

  .btn-white {
    background: white;
    color: var(--primary-blue);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    transition: all 0.4s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
  }

  .btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--primary-blue);
  }

  /* Footer */
  .footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 80px 0 30px;
  }

  .footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
  }

  .footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.4s;
  }

  .social-links a:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(241, 104, 35, 0.4);
  }

  .footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Privacy Policy Modal */
  .privacy-content {
    padding: 20px;
  }

  .privacy-content section {
    margin-bottom: 40px;
  }

  .privacy-content section:last-child {
    margin-bottom: 0;
  }

  .privacy-content h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
  }

  .privacy-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .privacy-content ul {
    margin: 20px 0;
    padding-left: 25px;
  }

  .privacy-content li {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .privacy-content strong {
    color: var(--primary-blue);
    font-weight: 600;
  }

  .privacy-content em {
    color: #777;
    font-style: italic;
  }

  .privacy-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }

  .privacy-content a:hover {
    color: var(--orange);
    text-decoration: underline;
  }

  #privacyModal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 25px 30px;
  }

  #privacyModal .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
  }

  #privacyModal .btn-close {
    filter: brightness(0) invert(1);
  }

  #privacyModal .modal-body {
    max-height: 70vh;
    padding: 30px;
  }

  #privacyModal .modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #e0e0e0;
  }

  #privacyModal .btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
  }

  #privacyModal .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 117, 187, 0.3);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .stat-number {
      font-size: 2.5rem;
    }

    .income-card {
      padding: 35px;
    }

    .promo-card {
      padding: 35px;
      min-height: 300px;
    }

    .floating-card-1,
    .floating-card-2 {
      display: none;
    }

    .product-category {
      padding: 25px;
    }
  }