/* style/index-vin7777-core-features.css */

:root {
    --primary-color: #1A202C;
    --accent-color: #FFD700;
    --text-light: #F0F2F5;
    --text-dark: #1A202C;
    --bg-dark: #1A202C;
    --bg-light: #F0F2F5;
}

.page-index-vin7777-core-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

.page-index-vin7777-core-features__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a4a62 100%); /* Slightly lighter dark for gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-index-vin7777-core-features__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-vin7777-core-features__hero-title {
    font-size: 3.2em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-index-vin7777-core-features__hero-subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-vin7777-core-features__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-vin7777-core-features__btn {
    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, transform 0.2s ease;
    white-space: nowrap;
}

.page-index-vin7777-core-features__btn--primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: 2px solid var(--accent-color);
}

.page-index-vin7777-core-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-vin7777-core-features__btn--secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.page-index-vin7777-core-features__btn--secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.page-index-vin7777-core-features__hero-image {
    margin-top: 40px;
    max-width: 100%;
    z-index: 0;
}

.page-index-vin7777-core-features__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-vin7777-core-features__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-vin7777-core-features__section-title {
    font-size: 2.5em;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-vin7777-core-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.page-index-vin7777-core-features__text {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-vin7777-core-features__about .page-index-vin7777-core-features__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-vin7777-core-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-index-vin7777-core-features__feature-item {
    background-color: #2a3447; /* Slightly lighter than primary for contrast */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-index-vin7777-core-features__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-index-vin7777-core-features__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 10px;
}

.page-index-vin7777-core-features__feature-title {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-vin7777-core-features__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    flex-grow: 1;
}

.page-index-vin7777-core-features__feature-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.page-index-vin7777-core-features__feature-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-index-vin7777-core-features__btn--link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    padding: 10px 0;
    margin-top: 20px;
    text-align: left;
    font-size: 1em;
    text-decoration: underline;
}

.page-index-vin7777-core-features__btn--link:hover {
    color: #e6c200;
    transform: none;
    background-color: transparent;
}

.page-index-vin7777-core-features__highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.page-index-vin7777-core-features__cta {
    text-align: center;
    background-color: #2a3447; /* Slightly lighter than primary */
    border-radius: 12px;
    padding: 50px 30px;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-vin7777-core-features__cta .page-index-vin7777-core-features__section-title {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.page-index-vin7777-core-features__cta .page-index-vin7777-core-features__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-index-vin7777-core-features__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-vin7777-core-features__faq-container {
    margin-top: 40px;
}

.page-index-vin7777-core-features__faq-item {
    background-color: #2a3447;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index-vin7777-core-features__faq-question {
    font-size: 1.3em;
    color: var(--text-light);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a3447;
    transition: background-color 0.3s ease;
}

.page-index-vin7777-core-features__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.page-index-vin7777-core-features__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-vin7777-core-features__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 25px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #1f2735;
}

.page-index-vin7777-core-features__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 20px;
}

.page-index-vin7777-core-features__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-index-vin7777-core-features__conclusion .page-index-vin7777-core-features__section-title {
    color: var(--accent-color);
}

.page-index-vin7777-core-features__conclusion .page-index-vin7777-core-features__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-vin7777-core-features__hero-title {
        font-size: 2.5em;
    }

    .page-index-vin7777-core-features__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-vin7777-core-features__section-title {
        font-size: 2em;
    }

    .page-index-vin7777-core-features__feature-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-index-vin7777-core-features__hero {
        padding: 60px 15px;
    }

    .page-index-vin7777-core-features__hero-title {
        font-size: 2em;
    }

    .page-index-vin7777-core-features__hero-subtitle {
        font-size: 1em;
    }

    .page-index-vin7777-core-features__hero-actions {
        flex-direction: column;
    }

    .page-index-vin7777-core-features__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-index-vin7777-core-features__section {
        padding: 40px 15px;
    }

    .page-index-vin7777-core-features__section-title {
        font-size: 1.8em;
    }

    .page-index-vin7777-core-features__text {
        font-size: 0.95em;
    }

    .page-index-vin7777-core-features__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-vin7777-core-features__hero-title {
        font-size: 1.8em;
    }

    .page-index-vin7777-core-features__section-title {
        font-size: 1.5em;
    }

    .page-index-vin7777-core-features__feature-title {
        font-size: 1.3em;
    }

    .page-index-vin7777-core-features__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-vin7777-core-features__faq-answer {
        padding: 10px 20px 15px;
    }
}