/* 代理合作页面样式 */

/* 合作伙伴英雄区 */
.partner-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0D234D 0%, #1a3a7a 100%);
    color: white;
    text-align: center;
}

.partner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.partner-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 合作伙伴数据 */
.partner-stats {
    padding: 50px 0;
    background-color: #FE5B00;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 合作对象 */
.partner-targets {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0D234D;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.target-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.target-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(254, 91, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.target-icon i {
    color: #FE5B00;
    font-size: 2rem;
}

.target-item h3 {
    font-size: 1.3rem;
    color: #0D234D;
    margin-bottom: 15px;
    font-weight: 600;
}

.target-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.target-requirements {
    text-align: left;
    padding-left: 20px;
}

.target-requirements li {
    margin-bottom: 8px;
    color: #333;
    position: relative;
}

.target-requirements li::before {
    content: "\2022";
    color: #FE5B00;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* 合作优势 */
.partner-benefits {
    padding: 80px 0;
}

.benefits-wrapper {
    margin-top: 40px;
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.tab-btn:hover {
    color: #FE5B00;
}

.tab-btn.active {
    color: #FE5B00;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FE5B00;
}

.benefits-content {
    margin-top: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 合作政策 */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.policy-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(254, 91, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.policy-icon i {
    color: #FE5B00;
    font-size: 2rem;
}

.policy-item h3 {
    font-size: 1.3rem;
    color: #0D234D;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* 赋能支持 */
.support-content {
    display: flex;
    gap: 30px;
}

.support-left, .support-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-item {
    display: flex;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(254, 91, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.support-icon i {
    color: #FE5B00;
    font-size: 1.5rem;
}

.support-text h3 {
    font-size: 1.2rem;
    color: #0D234D;
    margin-bottom: 10px;
    font-weight: 600;
}

.support-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* 成长路径 */
.growth-path {
    padding: 20px 0;
}

.path-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.path-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 4px;
    background-color: #FE5B00;
}

.path-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.path-point {
    position: absolute;
    left: 12px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FE5B00;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(254, 91, 0, 0.3);
}

.path-content {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.path-content h3 {
    font-size: 1.3rem;
    color: #0D234D;
    margin-bottom: 10px;
    font-weight: 600;
}

.path-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.path-content ul {
    padding-left: 20px;
}

.path-content li {
    margin-bottom: 5px;
    color: #333;
}

/* 合作流程 */
.partner-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #ddd;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 22%;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #FE5B00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    color: #0D234D;
    font-size: 2rem;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #0D234D;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

/* 合作伙伴展示 */
.partner-showcase {
    padding: 80px 0;
}

.partner-map {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.partner-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 交互式地图样式 */
.interactive-map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.interactive-map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* 交互式地图样式 */
.interactive-map {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Leaflet 地图容器 */
#map {
    border-radius: 8px;
    overflow: hidden;
}

/* 自定义标记样式 */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 20px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marker-pin:after {
    content: '';
    width: 8px;
    height: 8px;
    margin: 6px 0 0 6px;
    background: white;
    position: absolute;
    border-radius: 50%;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
}

/* 自定义弹窗样式 */
.custom-popup .leaflet-popup-content-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.marker-popup h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.marker-popup p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.marker-popup strong {
    color: #333;
    font-weight: 500;
}

.interactive-map svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #f8f9fa;
}

.interactive-map .country {
    transition: all 0.2s ease;
}

.interactive-map .country:hover {
    fill: #b0b0b0;
    stroke: #777;
}

/* 地图统计数据 */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(254, 91, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(254, 91, 0, 0.1);
}

.map-stats .stat-item {
    text-align: center;
}

.map-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FE5B00;
    margin-bottom: 5px;
}

.map-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* 地图tooltip样式 */
.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
    max-width: 200px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* 地图图例样式 */
.legend {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.legend text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.map-legend {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 120px;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.map-legend h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 12px;
    color: #666;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.map-legend div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-legend svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Leaflet 控件样式调整 */
.leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.leaflet-control-zoom a {
    background-color: white;
    color: #333;
    border: none;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
}

.leaflet-control-zoom a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* 禁用 Leaflet 右下角的链接点击 */
.leaflet-control-attribution {
    display: none !important;
}

.leaflet-control-attribution a {
    pointer-events: none !important;
    text-decoration: none !important;
    color: transparent !important;
}

/* 隐藏所有可能的 attribution 相关元素 */
.leaflet-bottom.leaflet-right {
    display: none !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .map-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .interactive-map-container {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .interactive-map {
        padding: 15px;
        margin: 20px 0;
    }
    
    #map {
        height: 400px !important;
    }
    
    .map-legend {
        padding: 10px;
    }
    
    .legend-item {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .map-stats {
        margin: 20px -20px 0;
        border-radius: 0;
    }
    
    .map-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .map-stats .stat-label {
        font-size: 0.8rem;
    }
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.logo-item {
    width: 150px;
    height: 80px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-width: 80%;
    max-height: 60%;
}

/* 合作伙伴见证 */
.partner-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 40px auto 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #0D234D;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 8px 0;
}

.partner-location {
    display: inline-block;
    background: linear-gradient(135deg, #fe5b00, #ff7a2b);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FE5B00;
}

/* 合作伙伴申请表单 */
.partner-form {
    padding: 80px 0;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-content {
    width: 100%;
    padding: 40px;
}

.form-content h2 {
    font-size: 2rem;
    color: #0D234D;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #FE5B00;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FE5B00;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #FE5B00;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

.form-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.form-image .contact-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 35, 77, 0.9);
    color: #fff;
    padding: 30px;
}

.form-image .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-image .contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-image .contact-info i {
    margin-right: 10px;
    color: #FE5B00;
}

.form-image .contact-info .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-image .contact-info .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s ease;
}

.form-image .contact-info .social-links a:hover {
    background-color: #FE5B00;
}

/* 常见问题 */
.partner-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 1000px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #0D234D;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: #FE5B00;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.faq-answer li {
    margin-bottom: 5px;
    color: #333;
}

/* CTA区域 */
.cta-section {
    background: #fe5b00;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: #fff;
    color: #fe5b00;
    border-color: #fff;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .partner-hero {
        padding: 100px 0;
    }
    
    .partner-hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .step-number {
        margin: 0 20px 0 0;
    }
    
    .step-icon {
        margin: 0 20px 0 0;
    }
    
    .form-wrapper {
        flex-direction: column;
    }
    
    .form-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 80px 0;
    }
    
    .partner-hero h1 {
        font-size: 2.2rem;
    }
    
    .partner-hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .partner-hero {
        padding: 60px 0;
    }
    
    .partner-hero h1 {
        font-size: 1.8rem;
    }
    
    .partner-hero p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .targets-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .tab-btn.active::after {
        display: none;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
}