/* style/index-why-choose-sv3888.css */
.page-index-why-choose-sv3888 {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-index-why-choose-sv3888__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    text-align: center;
    overflow: hidden;
    background-color: #0d0d0d; /* Fallback for hero section background */
}

.page-index-why-choose-sv3888__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-index-why-choose-sv3888__hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-index-why-choose-sv3888__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-why-choose-sv3888__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-index-why-choose-sv3888__hero-buttons,
.page-index-why-choose-sv3888__button-group,
.page-index-why-choose-sv3888__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-index-why-choose-sv3888__btn-primary,
.page-index-why-choose-sv3888__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-index-why-choose-sv3888__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border: 2px solid #C30808;
}

.page-index-why-choose-sv3888__btn-primary:hover {
    background-color: #e02a2a;
    border-color: #e02a2a;
}

.page-index-why-choose-sv3888__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-index-why-choose-sv3888__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-index-why-choose-sv3888__section {
    padding: 60px 20px;
    text-align: center;
    background-color: #0d0d0d; /* Ensure consistent dark background for sections */
}

.page-index-why-choose-sv3888__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
    color: #f0f0f0; /* Light text for general content on dark body background */
}

.page-index-why-choose-sv3888__section-title {
    font-size: 2.5em;
    color: #017439;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-index-why-choose-sv3888__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-index-why-choose-sv3888__text-block a {
    color: #FFFF00; /* Yellow for links in text blocks */
    text-decoration: underline;
}

.page-index-why-choose-sv3888__text-block a:hover {
    color: #e02a2a;
}

.page-index-why-choose-sv3888__feature-card-grid,
.page-index-why-choose-sv3888__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.page-index-why-choose-sv3888__feature-card,
.page-index-why-choose-sv3888__product-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
}

.page-index-why-choose-sv3888__feature-card:hover,
.page-index-why-choose-sv3888__product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-sv3888__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-why-choose-sv3888__card-title a {
    color: #017439;
    text-decoration: none;
}

.page-index-why-choose-sv3888__card-title a:hover {
    text-decoration: underline;
}

.page-index-why-choose-sv3888__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
    flex-grow: 1;
}

.page-index-why-choose-sv3888__card-text a {
    color: #FFFF00;
    text-decoration: underline;
}

.page-index-why-choose-sv3888__card-text a:hover {
    color: #e02a2a;
}

.page-index-why-choose-sv3888__image-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-index-why-choose-sv3888__product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-index-why-choose-sv3888__call-to-action {
    background-color: #017439;
    color: #ffffff;
    padding: 80px 20px;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__section-title {
    color: #ffffff;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__text-block {
    color: #f0f0f0;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__text-block a {
    color: #FFFF00;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__btn-primary {
    background-color: #FFFF00;
    color: #C30808;
    border-color: #FFFF00;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__btn-primary:hover {
    background-color: #ffcc00;
    border-color: #ffcc00;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-index-why-choose-sv3888__call-to-action .page-index-why-choose-sv3888__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-index-why-choose-sv3888__hero-title {
        font-size: 3em;
    }

    .page-index-why-choose-sv3888__hero-description {
        font-size: 1.1em;
    }

    .page-index-why-choose-sv3888__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-sv3888__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-index-why-choose-sv3888__hero-title {
        font-size: 2.2em;
    }

    .page-index-why-choose-sv3888__hero-description {
        font-size: 1em;
    }

    .page-index-why-choose-sv3888__hero-buttons,
    .page-index-why-choose-sv3888__button-group,
    .page-index-why-choose-sv3888__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-why-choose-sv3888__btn-primary,
    .page-index-why-choose-sv3888__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-index-why-choose-sv3888__section {
        padding: 40px 15px;
    }

    .page-index-why-choose-sv3888__content-area {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-index-why-choose-sv3888__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-index-why-choose-sv3888__text-block {
        font-size: 0.95em;
    }

    .page-index-why-choose-sv3888__feature-card-grid,
    .page-index-why-choose-sv3888__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-why-choose-sv3888__feature-card,
    .page-index-why-choose-sv3888__product-card {
        padding: 20px;
    }

    .page-index-why-choose-sv3888__card-title {
        font-size: 1.3em;
    }

    .page-index-why-choose-sv3888 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-index-why-choose-sv3888__image-content,
    .page-index-why-choose-sv3888__product-image {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-index-why-choose-sv3888__call-to-action {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-sv3888__hero-title {
        font-size: 1.8em;
    }

    .page-index-why-choose-sv3888__section-title {
        font-size: 1.5em;
    }
}