* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(#ffffff 70%, #c5b0e5 100%);
            color: #000000;
            line-height: 1.6;
            min-height: 100vh;
            /*min-height: calc(100vh - 80px); 80 px = header height 
            padding: 100px 20px 20px;  top padding ≥ header height */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        /* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #D3D3D3;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #c5b0e5;
}

.nav-link.cta {
    background: #A860FF;
    background: linear-gradient(rgba(168, 96, 255, 1) 0%, rgba(171, 154, 239, 1) 0%, rgba(192, 172, 237, 0.26) 42%, rgba(206, 183, 236, 0.49) 70%, rgba(242, 232, 254, 1) 100%);
    padding: 12px 24px;
    border-radius: 24px;
    border: transparent;
    font-weight: 500;
    cursor: pointer; 

}

  .nav-link.cta:hover {
            background: #333;
            color: #fff;
        }

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #37352f;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Mobile Responsiveness for Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 40px;
        transition: left 0.3s ease;
        border-top: 1px solid #e5e5e5;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .container {
        padding: 0 16px;
    }
}

            

        /* Help Section Styles - FAQ Inspired */
        .help-section {
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .help-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
        }

        .help-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #000000;
            padding-top: 80px;
            margin-top: 80px;
        }

        .help-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .help-accordion {
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 100px;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            animation: slideInUp 0.6s ease forwards;
        }

        .accordion-item:nth-child(1) { animation-delay: 0.1s; }
        .accordion-item:nth-child(2) { animation-delay: 0.2s; }
        .accordion-item:nth-child(3) { animation-delay: 0.3s; }

        .accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.2);
        }

        .accordion-item.active {
            background: #fff;
            border-color: #000;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(0, 0, 0, 0.02);
        }

        .accordion-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            flex-shrink: 0;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-item:hover .accordion-icon {
            background: rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .accordion-item.active .accordion-icon {
            background: #000;
            color: #fff;
        }

        .accordion-title {
            flex: 1;
        }

        .accordion-title h3 {
            font-size: 1.4rem;
            font-weight: 500;
            margin: 0;
            margin-bottom: 0.25rem;
            transition: color 0.3s ease;
            color: #000;
        }

        .content-text h4 {
            font-size: 1.2rem;
            color: #c7aee9;
            line-height: 1.4rem;
        }

        .accordion-title p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.2rem;
            margin: 0;
        }

        /* Toggle Icon */
        .toggle-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .toggle-icon::before,
        .toggle-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 16px;
            height: 2px;
            background: #000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .toggle-icon::before {
            transform: translate(-50%, -50%);
        }

        .toggle-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .accordion-item.active .toggle-icon {
            transform: rotate(45deg);
        }

        .accordion-item.active .toggle-icon::after {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 0, 0, 0.02);
        }

        /* FIXED: Increased max-height for mobile screens */
        .accordion-item.active .accordion-content {
            max-height: 3000px; /* Increased from 2000px */
        }

        .content-text {
            padding: 0 2rem 1.5rem 2rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease 0.1s;
        }

        .accordion-item.active .content-text {
            opacity: 1;
            transform: translateY(0);
        }

        .content-text p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .content-text p:last-child {
            margin-bottom: 0;
        }

        .content-text ul {
            list-style: none;
            margin-top: 1rem;
        }

        .content-text li {
            color: #666;
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.5rem;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .content-text li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #000;
            font-weight: 600;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness - ENHANCED */
        @media (max-width: 768px) {
            .accordion-header {
                padding: 1.25rem 1.5rem;
                flex-direction: row;
                align-items: flex-start;
            }

            .accordion-icon {
                width: 36px;
                height: 36px;
                font-size: 1.3rem;
                margin-right: 1rem;
            }

            .accordion-title h3 {
                font-size: 1rem;
            }

            .accordion-title p {
                font-size: 0.85rem;
            }

            .content-text {
                padding: 0 1.5rem 1.25rem 1.5rem;
            }

            .help-header h1 {
                font-size: 2rem;
            }

            .help-subtitle {
                font-size: 1rem;
            }

            /* FIXED: Even higher max-height for mobile to accommodate text wrapping */
            .accordion-item.active .accordion-content {
                max-height: 5000px; /* Increased specifically for mobile */
            }
        }

        /* For very small screens */
        @media (max-width: 480px) {
            .accordion-item.active .accordion-content {
                max-height: 7000px; /* Even higher for very small screens */
            }
            
            .content-text {
                padding: 0 1rem 1rem 1rem;
            }
            
            .accordion-header {
                padding: 1rem 1.25rem;
            }
        }



/* Services Section Styles */
.services-section {
    margin-top: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    align-items: center;
    padding-bottom: 150px;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.service-card {
    background:rgba(255, 255, 255, 1) 100%;
    color: #000000;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-image {
    padding: 2rem 2rem 0 2rem;
}

.image-placeholder {
    width: 100%;
    height: 150px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .image-placeholder
 {
    background: #ffffff;
    transform: scale(1.02);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #c5b0e5;
    line-height: 1.3;
    text-align: center;
}

.service-content p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    text-align: center;
}

.button-cta {
      background: #000000;
      color: #ffffff;
      border: none;
      padding: 1.1rem 2rem;
      border-radius: 50px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      margin-right: 100px;
      width: 100%;
      margin-top: 2rem;
}
      
.button-cta:hover {
    background: #c5b0e5;
    color: #fff; 
    font-weight: 600;
}

.explore-cta {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-self: center;
}

.h4 {
    text-align: center;
    font-size: 2rem;

}

.service-cta:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}




/* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: #ffffff;
            margin: 5% auto;
            padding: 0;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            padding: 24px 24px 0 24px;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 24px;
        }

        .modal-header h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .modal-header p {
            color: #666666;
            font-size: 0.9rem;
            padding-bottom: 24px;
        }

        .close {
            color: #999999;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: #000000;
        }

        .form-container {
            padding: 0 24px 24px 24px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #000000;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 90%;
            padding: 12px;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s ease;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #000000;
        }

        .form-textarea {
            resize: vertical;
            min-height: 60px;
            max-height: 80px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .submit-btn {
            width: 100%;
            background-color: #000000;
            color: #ffffff;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .submit-btn:hover {
            background-color: #333333;
        }


 /* Email Preferences and Remember Me Styling */
        .checkbox-preferences {
            background-color: #f9f9f9;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            padding: 20px;
            margin-top: 8px;
        }

        /* Platform Checkboxes Styling */
        .platform-checkboxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-top: 8px;
        }

        .platform-item {
            display: flex;
            align-items: center;
        }

        .platform-checkbox {
            display: none;
        }

        .platform-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #e5e5e5;
            border-radius: 6px;
            transition: all 0.2s ease;
            background-color: #ffffff;
        }

        .platform-label:hover {
            border-color: #d1d1d1;
            background-color: #f9f9f9;
        }

        .platform-checkbox:checked + .platform-label {
            background-color: #000000;
            border-color: #000000;
            color: #ffffff;
        }

        .platform-text {
            font-size: 0.9rem;
            font-weight: 500;
        }


  .hidden {
            visibility: hidden;
           }

        /* Email Preferences and Remember Me Styling */
        .checkbox-preferences {
            background-color: #f9f9f9;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            padding: 20px;
            margin-top: 8px;
        }

         .verification-instructions {
            background-color: #f0f9ff;
            border: 1px solid #f0f9ff;
            border-radius: 8px;
            padding: 16px;
            margin-top: 8px;
        }

        .verification-instructions p {
            margin-bottom: 8px;
            color: #0c4a6e;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .verification-instructions p:last-of-type {
            margin-bottom: 12px;
            font-weight: 500;
        }

        .verification-instructions small {
            color: #075985;
            font-size: 0.8rem;
            font-style: italic;
        }

        .preference-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            cursor: pointer;
        }

        .preference-item:last-child {
            margin-bottom: 0;
        }

        .preference-checkbox {
            display: none;
        }

        .preference-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            user-select: none;
            gap: 12px;
            width: 100%;
        }

        .checkmark {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            background-color: #ffffff;
            position: relative;
            transition: all 0.2s ease;
            margin-top: 2px;
        }

        .preference-checkbox:checked + .preference-label .checkmark {
            background-color: #000000;
            border-color: #000000;
        }

        .preference-checkbox:checked + .preference-label .checkmark::after {
            content: '';
            position: absolute;
            left: 6px;
            top: 2px;
            width: 6px;
            height: 10px;
            border: solid #ffffff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .preference-label:hover .checkmark {
            border-color: #9ca3af;
        }

        .preference-text {
            flex: 1;
            line-height: 1.4;
        }

        .preference-text strong {
            display: block;
            font-weight: 600;
            color: #000000;
            margin-bottom: 2px;
            font-size: 0.95rem;
        }

        .preference-text small {
            display: block;
            color: #666666;
            font-size: 0.85rem;
            font-weight: 400;
        }


        

/* Mobile Responsiveness for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    .service-image {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    .image-placeholder {
        height: 120px;
        font-size: 2.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
        padding-top: 2rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .services-section {
        margin-top: 3rem;
    }
}



/* Footer */
.footer {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 16px;
    font-weight: 300;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    color: #c7aee9;
    font-weight: 600;
}

/* Newsletter Section */
.footer-newsletter {
    flex: 1;
    max-width: 400px;
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-signup {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #374151;
    border-radius: 25px;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
    border-color: #6b7280;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

/* GDPR Consent */
.gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.gdpr-checkbox {
    display: none;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    gap: 8px;
    line-height: 1.4;
}

.gdpr-checkmark {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #6b7280;
    border-radius: 3px;
    background-color: #1f2937;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.gdpr-checkbox:checked + .gdpr-label .gdpr-checkmark {
    background-color: #ffffff;
    border-color: #ffffff;
}

.gdpr-checkbox:checked + .gdpr-label .gdpr-checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gdpr-text {
    font-size: 0.8rem;
    color: #d1d5db;
    flex: 1;
}

.privacy-link {
    color: #ffffff;
    text-decoration: underline;
}

.privacy-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        font-weight: 600;
        width: 100%;
        padding: 0 15px;
    }

    .footer-links {
        flex-direction: row !important;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .newsletter-signup {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .newsletter-input {
        margin-bottom: 0;
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }

@media (max-width: 480px) {
    /* Footer */
    .footer-content {
        padding: 0 10px;
    }
}






















































