/* style/index-our-advantages.css */
.page-index-our-advantages {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-index-our-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-our-advantages__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3e444f 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

.page-index-our-advantages__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold */
    line-height: 1.2;
}

.page-index-our-advantages__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e5dfd3; /* Light text */
}

.page-index-our-advantages__section {
    padding: 80px 0;
    background-color: #1A202C;
    color: #e5dfd3;
}

.page-index-our-advantages__section--dark {
    background-color: #2c3440; /* Slightly lighter dark for contrast */
}

.page-index-our-advantages__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.page-index-our-advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-index-our-advantages__grid-item {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-index-our-advantages__grid-item:hover {
    transform: translateY(-10px);
}

.page-index-our-advantages__feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 8px;
    object-fit: cover;
}

.page-index-our-advantages__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-our-advantages__feature-description {
    font-size: 1.1em;
    color: #e5dfd3;
    line-height: 1.7;
    text-align: left;
}

.page-index-our-advantages__content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.page-index-our-advantages__content-row--reverse {
    flex-direction: row-reverse;
}

.page-index-our-advantages__content-text {
    flex: 1;
    min-width: 300px;
}

.page-index-our-advantages__content-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-our-advantages__image--large {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-our-advantages__content-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-index-our-advantages__content-paragraph {
    font-size: 1.1em;
    color: #e5dfd3;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-index-our-advantages__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-index-our-advantages__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C; /* Dark text */
    border: 2px solid #FFD700;
}

.page-index-our-advantages__btn--primary:hover {
    background-color: #e0b300;
    transform: translateY(-3px);
}

.page-index-our-advantages__btn--secondary {
    background-color: #4CAF50; /* Green */
    color: #FFFFFF;
    border: 2px solid #4CAF50;
}

.page-index-our-advantages__btn--secondary:hover {
    background-color: #45a049;
    transform: translateY(-3px);
}

.page-index-our-advantages__btn--tertiary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index-our-advantages__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-index-our-advantages__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-index-our-advantages__cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #1A202C; /* Dark text */
}

.page-index-our-advantages__cta-title {
    font-size: 3em;
    color: #1A202C;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-our-advantages__cta-description {
    font-size: 1.3em;
    color: #3e444f;
    margin-bottom: 40px;
}

.page-index-our-advantages a {
    color: #FFD700; /* Default link color for body text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-our-advantages a:hover {
    color: #e0b300;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-our-advantages__hero-title {
        font-size: 2.8em;
    }
    .page-index-our-advantages__section-title {
        font-size: 2.2em;
    }
    .page-index-our-advantages__content-row {
        flex-direction: column;
    }
    .page-index-our-advantages__content-row--reverse {
        flex-direction: column-reverse;
    }
    .page-index-our-advantages__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-our-advantages__hero {
        padding: 80px 0;
    }
    .page-index-our-advantages__hero-title {
        font-size: 2.2em;
    }
    .page-index-our-advantages__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-our-advantages__section {
        padding: 60px 0;
    }
    .page-index-our-advantages__section-title {
        font-size: 1.8em;
    }
    .page-index-our-advantages__grid-item {
        padding: 25px;
    }
    .page-index-our-advantages__feature-title {
        font-size: 1.5em;
    }
    .page-index-our-advantages__feature-description,
    .page-index-our-advantages__content-paragraph {
        font-size: 1em;
    }
    .page-index-our-advantages__content-subtitle {
        font-size: 1.8em;
    }
    .page-index-our-advantages__cta-section {
        padding: 60px 0;
    }
    .page-index-our-advantages__cta-title {
        font-size: 2em;
    }
    .page-index-our-advantages__cta-description {
        font-size: 1.1em;
    }
    .page-index-our-advantages__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-our-advantages__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}