/* style/index-why-choose-123win.css */

:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #0056b3;
}

.page-index-why-choose-123win {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-index-why-choose-123win .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-why-choose-123win .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Darker shade of primary for gradient */
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-why-choose-123win .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.page-index-why-choose-123win .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-index-why-choose-123win .hero-btn {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-why-choose-123win .hero-btn:hover {
    transform: translateY(-3px);
}

.page-index-why-choose-123win .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-why-choose-123win .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-why-choose-123win .introduction-section, 
.page-index-why-choose-123win .commitment-section, 
.page-index-why-choose-123win .how-to-start-section, 
.page-index-why-choose-123win .faq-section, 
.page-index-why-choose-123win .conclusion-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

.page-index-why-choose-123win .introduction-section p, 
.page-index-why-choose-123win .commitment-section p, 
.page-index-why-choose-123win .conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-why-choose-123win .image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-index-why-choose-123win .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-why-choose-123win .features-section {
    padding: 80px 0;
    background-color: #eaf4ff; /* Light blue background */
}

.page-index-why-choose-123win .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-why-choose-123win .feature-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-123win .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-123win .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-why-choose-123win .feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-why-choose-123win .feature-item p {
    font-size: 1em;
    color: #555;
    text-align: justify;
}

.page-index-why-choose-123win .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-why-choose-123win .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-index-why-choose-123win .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-index-why-choose-123win .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.page-index-why-choose-123win .btn-secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-index-why-choose-123win .cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.page-index-why-choose-123win .cta-btn {
    font-size: 1.1em;
    padding: 15px 35px;
    border-radius: 50px;
}

.page-index-why-choose-123win .commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-index-why-choose-123win .commitment-list li {
    background-color: var(--text-light);
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-index-why-choose-123win .commitment-list li strong {
    color: var(--primary-color);
}

.page-index-why-choose-123win .how-to-start-section .steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-index-why-choose-123win .how-to-start-section .steps-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #444;
    text-align: justify;
}

.page-index-why-choose-123win .how-to-start-section .steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-why-choose-123win .cta-btn-large {
    font-size: 1.2em;
    padding: 18px 40px;
    border-radius: 50px;
    margin: 10px;
}

.page-index-why-choose-123win .faq-section {
    background-color: #f0f8ff;
}

.page-index-why-choose-123win .faq-item {
    background-color: var(--text-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-why-choose-123win .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-index-why-choose-123win .faq-item p {
    color: #555;
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
}

.page-index-why-choose-123win .conclusion-section {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
}

.page-index-why-choose-123win .conclusion-section .section-title {
    color: var(--text-light);
}

.page-index-why-choose-123win .conclusion-section .section-title::after {
    background-color: var(--secondary-color);
}

.page-index-why-choose-123win .conclusion-section p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-why-choose-123win .cta-final-btn {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
    font-size: 1.3em;
    padding: 20px 45px;
    border-radius: 50px;
}

.page-index-why-choose-123win .cta-final-btn:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--text-light);
}

.page-index-why-choose-123win .copyright-section {
    background-color: #002c5c; /* Darker blue for footer-like section */
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-why-choose-123win .hero-title {
        font-size: 2.8em;
    }
    .page-index-why-choose-123win .hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-why-choose-123win .section-title {
        font-size: 2em;
    }
    .page-index-why-choose-123win .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-why-choose-123win .commitment-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-123win .hero-title {
        font-size: 2.2em;
    }
    .page-index-why-choose-123win .hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-why-choose-123win .introduction-section, 
    .page-index-why-choose-123win .features-section, 
    .page-index-why-choose-123win .commitment-section, 
    .page-index-why-choose-123win .how-to-start-section, 
    .page-index-why-choose-123win .faq-section, 
    .page-index-why-choose-123win .conclusion-section {
        padding: 40px 0;
    }
    .page-index-why-choose-123win .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-index-why-choose-123win .cta-btn-large {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }
    .page-index-why-choose-123win .feature-item h3 {
        font-size: 1.3em;
    }
    .page-index-why-choose-123win .faq-item h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-123win .hero-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-123win .hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-why-choose-123win .section-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-123win .hero-btn, 
    .page-index-why-choose-123win .cta-btn, 
    .page-index-why-choose-123win .cta-btn-large, 
    .page-index-why-choose-123win .cta-final-btn {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .page-index-why-choose-123win .how-to-start-section .steps-list li {
        padding-left: 50px;
    }
    .page-index-why-choose-123win .how-to-start-section .steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}