.partner-hero {
            padding: 160px 0 80px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../images/partner_sairam.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        .partner-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
        .partner-hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; opacity: 0.9; text-align: center; }
        
        .content-section { padding: 100px 0; }
        .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        
        .service-list { list-style: none; margin-top: 30px; }
        .service-list li { margin-bottom: 20px; display: flex; gap: 15px; align-items: flex-start; }
        .service-list .icon { color: var(--c-primary); font-size: 1.5rem; font-weight: bold; }
        
        .cta-box { background: var(--c-surface); padding: 60px; border-radius: 24px; box-shadow: var(--shadow-lg); text-align: center; margin-top: 80px; border: 1px solid var(--c-border); }
        .cta-box h2 { font-size: 2.5rem; color: var(--c-primary); margin-bottom: 20px; }
        .cta-actions-wrap {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-actions-wrap .btn {
            flex: 0 1 auto !important;
            white-space: normal !important;
            text-align: center;
            max-width: 100%;
        }

        @media (max-width: 900px) {
            .grid { grid-template-columns: 1fr; gap: 40px; }
            .partner-hero h1 { font-size: 2.4rem; }
            .cta-box { padding: 32px 20px; }
            .cta-box h2 { font-size: 1.9rem; }
            .cta-actions-wrap {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-actions-wrap .btn {
                width: 100%;
            }
        }
