/* ==============================================
   Why Choose Us Page Styles
   ============================================== */

/* Reset / base (avoid conflicts with theme) */
.whychooseus-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.whychooseus-page {
    font-family: 'Inter', sans-serif;
    color: #1a1e2b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.whychooseus-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero section */
.whychooseus-page .hero {
    padding: 80px 0 70px;
    background: linear-gradient(120deg, #f9fcff 0%, #f0f5fa 100%);
}
.whychooseus-page .hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.whychooseus-page .hero-content {
    flex: 1;
}
.whychooseus-page .hero-badge {
    background: #e0edf9;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e466e;
    margin-bottom: 24px;
}
.whychooseus-page .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0b2b44;
    margin-bottom: 20px;
}
.whychooseus-page .hero-content p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 32px;
    max-width: 550px;
}
.whychooseus-page .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.whychooseus-page .hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    min-height: 320px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

/* Buttons */
.whychooseus-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e466e;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.whychooseus-page .btn-outline {
    background: transparent;
    border: 2px solid #1e466e;
    color: #1e466e;
}
.whychooseus-page .btn-outline:hover {
    background: #1e466e;
    color: white;
}
.whychooseus-page .btn:hover {
    background: #0f2c48;
    transform: translateY(-2px);
}

/* Feature list */
.whychooseus-page .feature-list {
    list-style: none;
    margin-top: 16px;
}
.whychooseus-page .feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
	color: #1a1e2b; 
}
.whychooseus-page .feature-list i {
    color: #2c7da0;
    width: 24px;
    font-size: 1.2rem;
}

/* Zigzag sections */
.whychooseus-page .zigzag {
    padding: 80px 0;
}
.whychooseus-page .zigzag-item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.whychooseus-page .zigzag-item.reverse {
    flex-direction: row-reverse;
}
.whychooseus-page .zigzag-text {
    flex: 1;
}
.whychooseus-page .zigzag-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2b4e;
}
.whychooseus-page .zigzag-text p {
    color: #3a4a66;
    margin-bottom: 20px;
    font-size: 1rem;
}
.whychooseus-page .zigzag-img {
    flex: 1;
    background-color: #eef2fa;
    border-radius: 28px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* CTA revolution */
.whychooseus-page .cta-revolution {
    background: linear-gradient(110deg, #13294b, #1f4662);
    color: white;
    text-align: center;
    padding: 70px 24px;
    border-radius: 48px;
    margin: 40px 0 60px;
}
.whychooseus-page .cta-revolution h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.whychooseus-page .cta-revolution .btn {
    background: white;
    color: #1e466e;
    margin-top: 24px;
}
.whychooseus-page .cta-revolution .btn:hover {
    background: #f0f4fa;
}

/* Responsive */
@media (max-width: 768px) {
    .whychooseus-page .hero-content h1 {
        font-size: 2.4rem;
    }
    .whychooseus-page .zigzag-item,
    .whychooseus-page .zigzag-item.reverse {
        flex-direction: column;
    }
    .whychooseus-page .hero-grid {
        flex-direction: column;
    }
    .whychooseus-page .container {
        padding: 0 20px;
    }
}