.provider-page {
        background: #fafafa;
    }

    /* Hero Section */
    .provider-hero {
        text-align: center;
        padding: 80px 20px 60px;
        background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        color: #a51c30;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 24px;
        border: 1px solid #f0d0d5;
    }

    .hero-badge i {
        font-size: 1.25rem;
    }

    .provider-hero h1 {
        font-size: 48px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .provider-hero h1 span {
        color: #a51c30;
        display: block;
    }

    .hero-box {
        max-width: 800px;
        margin: 40px auto 0;
        background: #ffffff;
        border: 1px solid #fce7ea;
        border-radius: 16px;
        padding: 30px 40px;
    }

    .hero-box p {
        font-size: 1.25rem;
        color: #4b5563;
        line-height: 1.8;
        margin: 0;
    }

    /* Why Partner Section */
    .why-partner-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
    }

    .section-header h2 span {
        color: #a51c30;
    }

    .section-header p {
        font-size: 1.25rem;
        color: #6b7280;
        max-width: 700px;
        margin: 0 auto;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .benefit-card {
        background: #ffffff;
        border: 1px solid #f3f4f6;
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        background: #fef2f2;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .benefit-icon i {
        font-size: 24px;
        color: #a51c30;
    }

    .benefit-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 12px;
    }

    .benefit-card p {
        font-size: 1.25rem;
        color: #6b7280;
        line-height: 1.7;
        margin: 0;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 80px 20px;
        background: #ffffff;
    }

    .how-it-works-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .step-item {
        display: flex;
        gap: 20px;
        background: #ffffff;
        border: 1px solid #f3f4f6;
        border-radius: 12px;
        padding: 24px 30px;
        margin-bottom: 16px;
        transition: all 0.3s ease;
    }

    .step-item:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: #a51c30;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
    }

    .step-content h4 {
        font-size: 17px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 1.25rem;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }

    /* Application Section */
    .application-section {
        padding: 80px 20px;
        background: #fafafa;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Prevents horizontal scroll */
    }

    .application-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 24px;
        align-items: start;
        width: 100%;
        box-sizing: border-box;
    }

    .application-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .application-info {
        background-color: #a51c30;
        padding: 40px 35px;
        color: #ffffff;
        border-radius: 16px;
    }

    .application-info h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .application-info > p {
        font-size: 1.25rem;
        line-height: 1.7;
        opacity: 0.9;
        margin-bottom: 24px;
    }

    .info-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .info-features li:last-child {
        margin-bottom: 0;
    }

    .info-features li i {
        color: #34d399;
        font-size: 16px;
    }

    .contact-box {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px 30px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .contact-box h4 {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .contact-box h4 i {
        color: #a51c30;
        margin-top: 3px;
    }

    .contact-box p {
        font-size: 1.25rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #4b5563;
    }

    .contact-box p:last-child {
        margin-bottom: 0;
    }

    .contact-box p i {
        width: 16px;
        color: #6b7280;
    }

    .contact-box a {
        color: #1f2937;
        text-decoration: none;
    }

    .contact-box a:hover {
        color: #a51c30;
    }

    /* Form Styles */
    .application-form {
        background: #ffffff;
        padding: 40px 35px;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .application-form h3 {
        font-size: 24px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 30px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 1.25rem;
        font-weight: 500;
        color: #374151;
        margin-bottom: 8px;
    }

    .form-group label .required {
        color: #dc2626;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1.25rem;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9ca3af;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #a51c30;
        box-shadow: 0 0 0 3px rgba(165, 28, 48, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        background: #a51c30;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: #8f1828;
    }

    .submit-btn:disabled {
        background: #d1d5db;
        cursor: not-allowed;
    }

    /* Success Message */
    .success-message {
        display: none;
        background: #d1fae5;
        color: #065f46;
        padding: 16px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 1.25rem;
    }

    .error-message {
        display: none;
        background: #fee2e2;
        color: #dc2626;
        padding: 16px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 1.25rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .application-container {
            grid-template-columns: 1fr;
        }

        .application-left {
            order: 1;
        }

        .application-form {
            order: 2;
        }

        .provider-hero h1 {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .provider-hero h1 {
            font-size: 28px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .application-section {
            padding: 40px 15px;
        }

        .application-section {
            padding: 40px 15px;
        }

        .application-info,
        .application-form,
        .contact-box {
            padding: 30px 20px;
            width: 90%; /* Fixed the bleeding issue */
            margin: 0 auto; /* Centers the 90% width box */
            box-sizing: border-box;
        }

            /* Force long emails to wrap on small screens */
            .contact-box p,
            .contact-box a {
                word-wrap: break-word;
                overflow-wrap: break-word;
                word-break: break-all;
            }

        .hero-box {
            padding: 24px 15px;
            width: 100%;
            box-sizing: border-box;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box; /* Forces inputs to stay inside container */
        }
    }