/* Why Choose Us Page Styles */

.page-hero {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05) 0%, rgba(13, 94, 125, 0.05) 100%);
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-choose-content {
    padding: 80px 0;
}

.why-choose-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 0 40px;
}

.why-choose-item.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.why-choose-item.reverse .why-choose-image {
    order: 2;
}

.why-choose-item.reverse .why-choose-text {
    order: 1;
}

.why-choose-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(11, 159, 216, 0.2);
    object-fit: cover;
}

.why-choose-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.why-choose-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 20px;
}

.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .why-choose-item,
    .why-choose-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .why-choose-item.reverse .why-choose-image {
        order: 1;
    }
    
    .why-choose-item.reverse .why-choose-text {
        order: 2;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .why-choose-text h2 {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .why-choose-content {
        padding: 60px 0;
    }
    
    .why-choose-item {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .why-choose-text h2 {
        font-size: 24px;
    }
    
    .why-choose-text p {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}