/* Professional Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #ffffff 0%,
                #f7f4ef 50%, #f1ebe2 100%);
        position: relative;
        overflow: hidden;
        padding: 120px 0 60px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(171, 135, 80, 0.08) 0%,
                rgba(171, 135, 80, 0.03) 100%);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        z-index: 0;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
        min-height: 70vh;
    }

    .hero-content {
        padding-right: 40px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 32px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        background: rgba(171, 135, 80, 0.12);
        color: #AB8750;
        border: 1px solid rgba(171, 135, 80, 0.3);
        box-shadow: 0 4px 20px rgba(171, 135, 80, 0.15);
    }

    .hero h1 {
        font-size: clamp(48px, 6vw, 72px);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 32px;
        color: #AB8750;
        background: #AB8750;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 22px;
        color: var(--text-light);
        margin: 0 0 48px;
        line-height: 1.7;
        font-weight: 400;
        max-width: 580px;
    }

    /* .hero-cta {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 48px;
    } */

    .btn-primary {
        padding: 20px 40px;
        background: #45885C;
        color: white;
        text-decoration: none;
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(171, 135, 80, 0.3);
        border: none;
        cursor: pointer;
    }

    .btn-primary:hover {
        background: #157347;
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(171, 135, 80, 0.4);
    }

    .btn-secondary {
        padding: 20px 40px;
        background: transparent !important;
        color: var(--text-dark) !important;
        text-decoration: none;
        border: 2px solid var(--gold) !important;
        border-radius: var(--radius) !important;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .btn-secondary:hover {
        background: var(--gold);
        color: var(--text-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }

    /* Professional Image Container */
    .hero-image {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 40px;
    }

    .image-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        height: 500px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .image-container:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .image-container:hover img {
        transform: scale(1.05);
    }

    /* Professional decorative elements */
    .image-container::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: var(--gradient-gold);
        border-radius: 28px;
        z-index: -1;
        opacity: 0.6;
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .floating-card {
        position: absolute;
        background: white;
        border-radius: 12px;
        padding: 16px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        animation: float 3s ease-in-out infinite;
    }

    .floating-card-1 {
        top: 20px;
        right: -20px;
        animation-delay: 0s;
    }

    .floating-card-2 {
        bottom: 20px;
        left: -20px;
        animation-delay: 1.5s;
    }

    .floating-card i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .floating-card-content h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 2px;
    }

    .floating-card-content p {
        font-size: 12px;
        color: var(--text-light);
        margin: 0;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Section Styling */
    .section {
        padding: 100px 0;
    }

    .section-white {
        background: var(--background);
    }

    .section-light {
        background: var(--background-light);
    }

    .section-gold {
        background: linear-gradient(135deg, rgba(206, 184, 152, 0.1) 0%, rgba(206, 184, 152, 0.05) 100%);
    }

    .section-title {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-title h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .section-title p {
        font-size: 20px;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Grid System */
    .grid {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    /* Cards */
    .card {
        background: var(--background-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-large);
        padding: 48px;
        box-shadow: var(--shadow-light);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-gold);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .card:hover::before {
        transform: translateX(0);
    }

    .card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-8px);
        border-color: var(--gold-light);
    }

    .card-icon {
        width: 56px;
        height: 56px;
        background: var(--gradient-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        color: var(--text-dark);
        font-size: 24px;
    }

    .card h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .card p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .card ul {
        list-style: none;
        padding: 0;
    }

    .card li {
        padding: 10px 0;
        color: var(--text-light);
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
    }

    .card li::before {
        content: "\f00c";
        width: 20px;
        height: 20px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: white;
        font-size: 10px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    /* Stats Section */
    .stats {
        background: linear-gradient(135deg, rgba(206, 184, 152, 0.1) 0%, rgba(206, 184, 152, 0.05) 100%);
        color: white;
        text-align: center;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        pointer-events: none;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 60px;
        position: relative;
        z-index: 1;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-icon {
        font-size: 32px;
        margin-bottom: 8px;
        color: #AB8750;
    }

    .stat-item h3 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 8px;
        background: var(--text-light);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-item p {
        font-size: 18px;
        opacity: 0.9;
        font-weight: 500;
        color: var(--text-dark);
    }

    /* Process Steps */
    .process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .step {
        text-align: center;
        position: relative;
        padding: 32px;
        background: var(--background-card);
        border-radius: var(--radius-large);
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
        border: 1px solid var(--border);
    }

    .step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: var(--gradient-gold);
        color: var(--text-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 800;
        margin: 0 auto 24px;
        box-shadow: var(--shadow-light);
    }

    .step h4 {
        font-size: 22px;
        margin-bottom: 16px;
        color: var(--text-dark);
        font-weight: 600;
    }

    .step p {
        color: var(--text-light);
        line-height: 1.6;
    }

    /* FAQ */
    .faq-item {
        background: var(--background-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-large);
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: var(--shadow);
        border-color: var(--gold);
    }

    .faq-item summary {
        padding: 32px;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-dark);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: "\f067";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        color: var(--primary);
        transition: all 0.3s ease;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gold-light);
        border-radius: 50%;
    }

    .faq-item[open] summary::after {
        content: "\f068";
        background: var(--primary);
        color: white;
        transform: rotate(180deg);
    }

    .faq-content {
        padding: 0 32px 32px;
        color: var(--text-light);
        line-height: 1.7;
        font-size: 16px;
    }

    /* Enhanced Form Styles */
    .form-section {
        background: var(--background-light);
        position: relative;
    }

    .form-card {
        background: var(--background-card);
        border-radius: var(--radius-large);
        padding: 60px;
        box-shadow: var(--shadow-hover);
        max-width: 800px;
        margin: 0 auto;
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--gradient-gold);
    }

    .form-section-title {
        margin: 30px 0 20px 0;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-light);
    }

    .form-section-title h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .form-section-title h3 i {
        color: var(--primary);
        font-size: 18px;
    }

    .form-grid {
        display: grid;
        gap: 24px;
    }

    .form-row {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .form-row.two-col {
            grid-template-columns: 1fr 1fr;
        }

        .form-row.three-col {
            grid-template-columns: 1fr 1fr;
        }
    }

    .form-group {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-dark);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .form-group label i {
        color: var(--gold-dark);
        font-size: 12px;
        width: 14px;
    }

    .required {
        color: var(--secondary);
        font-weight: 700;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="date"],
    select,
    textarea {
        padding: 14px 16px;
        border: 2px solid var(--border);
        border-radius: var(--radius);
        font-size: 15px;
        transition: all 0.3s ease;
        background: var(--background);
        color: var(--text-dark);
        font-family: inherit;
        outline: none;
        width: 100%;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        transform: translateY(-1px);
    }

    textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* Select2 Customization */
    .select2-container {
        width: 100% !important;
    }

    .select2-container--default .select2-selection--single,
    .select2-container--default .select2-selection--multiple {
        border: 2px solid var(--border) !important;
        border-radius: var(--radius) !important;
        min-height: 48px !important;
        padding: 6px 10px !important;
        font-size: 15px !important;
        transition: all 0.3s ease;
    }

    .select2-container--default.select2-container--focus .select2-selection--single,
    .select2-container--default.select2-container--focus .select2-selection--multiple {
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1) !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: var(--text-dark) !important;
        line-height: 32px !important;
        padding-left: 6px !important;
    }

    .select2-dropdown {
        border: 2px solid var(--border) !important;
        border-radius: var(--radius) !important;
        box-shadow: var(--shadow) !important;
    }

    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-top: 16px;
        padding: 16px;
        background: rgba(206, 184, 152, 0.05);
        border-radius: var(--radius);
        border: 1px solid var(--border-light);
    }

    .checkbox-group input[type="checkbox"] {
        margin-top: 4px;
        width: 18px;
        height: 18px;
        accent-color: var(--primary);
        flex-shrink: 0;
    }

    .checkbox-group label {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.5;
        font-weight: 500;
    }

    .form-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .btn-submit {
        padding: 16px 40px;
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-light);
    }

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-reset {
        padding: 16px 40px;
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--border);
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-reset:hover {
        border-color: var(--gold);
        color: var(--text-dark);
        background: rgba(206, 184, 152, 0.1);
    }

    /* Add space between buttons */
    .form-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }


    .form-note {
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 16px;
        text-align: center;
        line-height: 1.5;
    }

    .form-note a {
        color: var(--primary);
        text-decoration: none;
    }

    .form-note a:hover {
        text-decoration: underline;
    }

    .success,
    .error {
        display: none;
        padding: 20px;
        border-radius: var(--radius);
        margin: 30px 0;
        font-weight: 600;
        text-align: center;
        border: 2px solid;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease-in-out;
    }

    .success {
        background: linear-gradient(to right, #E8F5E8, #D7ECD7);
        color: var(--primary-dark);
        border-left: 5px solid var(--primary);
        position: relative;
        padding-top: 60px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.7s ease-out, pulse 2s infinite;
        border-radius: 10px;
        margin: 30px 0;
    }

    .success::before {
        content: '✓';
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: bold;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        animation: scaleIn 0.5s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.5);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
        }
    }

    @keyframes scaleIn {
        from {
            transform: translateX(-50%) scale(0.5);
            opacity: 0;
        }

        to {
            transform: translateX(-50%) scale(1);
            opacity: 1;
        }
    }

    .error {
        background: #FFEBEE;
        color: #C62828;
        border-color: #EF5350;
    }

    /* Form validation styles */
    .validation-error {
        color: #C62828;
        font-size: 12px;
        margin-top: 5px;
        font-weight: 500;
        padding: 5px 10px;
        background-color: rgba(239, 83, 80, 0.08);
        border-left: 3px solid #EF5350;
        border-radius: 0 4px 4px 0;
        display: block;
        margin-bottom: 5px;
    }

    .error-input {
        border-color: #EF5350 !important;
        box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1) !important;
    }

    input.error-input:focus,
    select.error-input:focus,
    textarea.error-input:focus {
        border-color: #EF5350 !important;
        box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.2) !important;
    }

    /* Simple Footer */
    footer {
        background: var(--text-dark);
        color: white;
        padding: 24px 0;
        text-align: center;
    }

    .footer-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-content span {
        font-size: 14px;
        color: #CCCCCC;
    }

    .footer-apply-btn {
        padding: 10px 20px;
        background: var(--gradient-gold);
        color: var(--text-dark);
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .footer-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(206, 184, 152, 0.3);
    }

    /* Mobile Responsive Design */
    @media (max-width: 1200px) {
        .container {
            max-width: 1200px;
        }

        .hero-container {
            gap: 60px;
        }

        .hero-content {
            padding-right: 20px;
        }

        .hero-image {
            padding-left: 20px;
        }
    }

    @media (max-width: 968px) {
        .hero {
            min-height: auto;
            padding: 100px 0 80px;
        }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }

        .hero-content {
            text-align: center;
            order: 2;
            padding-right: 0;
        }

        .hero-image {
            order: 1;
            padding-left: 0;
            justify-content: center;
        }

        .image-container {
            max-width: 500px;
            height: 400px;
        }

        .logo img {
            height: 70px;
        }

        .hero::before {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: 80px 0 60px;
        }

        .hero-container {
            gap: 40px;
        }

        .image-container {
            max-width: 420px;
            height: 320px;
        }

        .floating-card {
            display: none;
        }

        .section {
            padding: 80px 0;
        }

        .card {
            padding: 36px;
        }

        .form-card {
            padding: 40px 24px;
            margin: 0 10px;
        }

        .hero-cta {
            flex-direction: column;
            align-items: center;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }

        .form-actions {
            flex-direction: column;
            align-items: center;
        }

        .btn-submit,
        .btn-reset {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

        .step {
            padding: 24px;
        }

        .process {
            gap: 30px;
        }

        .footer-content {
            flex-direction: column;
            gap: 16px;
        }

        .logo img {
            height: 60px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }

        .form-card {
            padding: 32px 20px;
        }

        .card {
            padding: 28px;
        }

        .image-container {
            max-width: 350px;
            height: 280px;
        }

        .logo img {
            height: 55px;
        }

        .hero h1 {
            font-size: clamp(36px, 8vw, 48px);
        }

        .hero-subtitle {
            font-size: 18px;
        }
    }

.process {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: inherit !important;
}

.process > span {
    display: none !important;
}

.process .step {
    display: block !important;
    text-align: center !important;
    position: relative !important;
    padding: 32px !important;
    background: var(--background-card) !important;
    border-radius: var(--radius-large) !important;
    box-shadow: var(--shadow-light) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-dark) !important;
}

.process .step:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--gold) !important;
    background: var(--background-card) !important;
}

.process .step-number {
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px !important;
    border-radius: 50% !important;
    background: var(--gradient-gold) !important;
    color: var(--text-dark) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    box-shadow: var(--shadow-light) !important;
}

.process .step h4 {
    margin: 0 0 16px !important;
    color: var(--text-dark) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.process .step p {
    margin: 0 !important;
    color: var(--text-light) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.faq .faq-item summary::after {
    content: "\f067" !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--gold-light) !important;
    color: var(--primary) !important;
    font-family: "Font Awesome 6 Free" !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    transform: none !important;
}

.faq .faq-item[open] summary::after {
    content: "\f068" !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: rotate(180deg) !important;
}

@media (max-width: 768px) {
    .process {
        gap: 30px !important;
    }

    .process .step {
        padding: 24px !important;
    }
}

