:root {
    --primary-color: #1A2E4E;
    --secondary-color: #FFD700;
    --text-light: #F0F0F0;
    --text-dark: #1A2E4E;
    --background-light: #FFFFFF;
    --background-dark: #1A2E4E;
}

.page-user-stories-reasons-to-recommend-vipwinbest {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-user-stories-reasons-to-recommend-vipwinbest .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-user-stories-reasons-to-recommend-vipwinbest .hero-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.page-user-stories-reasons-to-recommend-vipwinbest .hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.page-user-stories-reasons-to-recommend-vipwinbest .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-user-stories-reasons-to-recommend-vipwinbest .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-user-stories-reasons-to-recommend-vipwinbest .hero-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-user-stories-reasons-to-recommend-vipwinbest .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-user-stories-reasons-to-recommend-vipwinbest .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-user-stories-reasons-to-recommend-vipwinbest .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-user-stories-reasons-to-recommend-vipwinbest .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-user-stories-reasons-to-recommend-vipwinbest .btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Section Title */
.page-user-stories-reasons-to-recommend-vipwinbest .section-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-user-stories-reasons-to-recommend-vipwinbest .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;
}

/* Reasons Section */
.page-user-stories-reasons-to-recommend-vipwinbest .reasons-section {
    padding: 60px 0;
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-item.reverse {
    flex-direction: row-reverse;
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-text {
    flex: 2;
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-heading {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-user-stories-reasons-to-recommend-vipwinbest .reason-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

/* Call to Action Section */
.page-user-stories-reasons-to-recommend-vipwinbest .cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    margin-top: 40px;
}

.page-user-stories-reasons-to-recommend-vipwinbest .cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-user-stories-reasons-to-recommend-vipwinbest .cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-user-stories-reasons-to-recommend-vipwinbest .hero-section {
        flex-direction: column-reverse;
        padding: 60px 0;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .hero-title {
        font-size: 2.5em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .hero-description {
        font-size: 1em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-item {
        flex-direction: column;
        text-align: center;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-item.reverse {
        flex-direction: column;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-image {
        margin-top: 20px;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-heading {
        font-size: 1.8em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .section-title {
        font-size: 2.2em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .cta-title {
        font-size: 2.5em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-user-stories-reasons-to-recommend-vipwinbest .hero-section {
        padding: 40px 0;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .hero-title {
        font-size: 2em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reasons-section {
        padding: 40px 0;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-item {
        margin-bottom: 50px;
        padding: 20px;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-heading {
        font-size: 1.5em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .reason-text p {
        font-size: 1em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .cta-title {
        font-size: 2em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .cta-description {
        font-size: 1em;
    }

    .page-user-stories-reasons-to-recommend-vipwinbest .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
}