/* style/index-core-offerings.css */
.page-index-core-offerings {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark background for contrast */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-index-core-offerings__hero-section {
    position: relative;
    background: linear-gradient(135deg, #FF0055 0%, #00FFEE 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-core-offerings__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-index-core-offerings__hero-section .page-index-core-offerings__container {
    position: relative;
    z-index: 1;
    color: #FFFFFF; /* White text on vibrant background */
}

.page-index-core-offerings__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-index-core-offerings__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* General Section Styling */
.page-index-core-offerings__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-core-offerings__section--dark {
    background-color: #282828;
}

.page-index-core-offerings__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FF0055; /* Main brand color for titles */
}

.page-index-core-offerings__section--dark .page-index-core-offerings__section-title {
    color: #00FFEE; /* Auxiliary brand color for titles on dark background */
}

.page-index-core-offerings__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #B0B0B0;
}

/* Grid Layouts */
.page-index-core-offerings__grid,
.page-index-core-offerings__promo-grid,
.page-index-core-offerings__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-core-offerings__grid-item,
.page-index-core-offerings__promo-item,
.page-index-core-offerings__guide-item {
    background-color: #333333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index-core-offerings__grid-item:hover,
.page-index-core-offerings__promo-item:hover,
.page-index-core-offerings__guide-item:hover {
    transform: translateY(-10px);
}

.page-index-core-offerings__grid-image,
.page-index-core-offerings__promo-image,
.page-index-core-offerings__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-index-core-offerings__grid-title,
.page-index-core-offerings__promo-title,
.page-index-core-offerings__guide-title {
    font-size: 1.6em;
    color: #FF0055;
    margin-bottom: 15px;
}

.page-index-core-offerings__promo-item .page-index-core-offerings__promo-title {
    color: #00FFEE;
}

.page-index-core-offerings__guide-item .page-index-core-offerings__guide-title {
    color: #FF0055;
}

.page-index-core-offerings__grid-text,
.page-index-core-offerings__promo-text,
.page-index-core-offerings__guide-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

/* Buttons */
.page-index-core-offerings__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-core-offerings__button--primary {
    background-color: #FF0055;
    color: #FFFFFF;
    border: 2px solid #FF0055;
}

.page-index-core-offerings__button--primary:hover {
    background-color: #E6004C;
    border-color: #E6004C;
    transform: translateY(-3px);
}

.page-index-core-offerings__button--secondary {
    background-color: #00FFEE;
    color: #1A1A1A;
    border: 2px solid #00FFEE;
}

.page-index-core-offerings__button--secondary:hover {
    background-color: #00DDEE;
    border-color: #00DDEE;
    transform: translateY(-3px);
}

.page-index-core-offerings__button--tertiary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-index-core-offerings__button--tertiary:hover {
    background-color: #FFFFFF;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-index-core-offerings__cta-buttons {
    margin-top: 40px;
}

/* Responsibility List */
.page-index-core-offerings__responsibility-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-index-core-offerings__responsibility-list li {
    background-color: #333333;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FF0055;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-index-core-offerings__responsibility-list li strong {
    color: #00FFEE;
}

.page-index-core-offerings__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose List */
.page-index-core-offerings__why-choose-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-index-core-offerings__why-choose-list li {
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #00FFEE;
    font-size: 1.1em;
    color: #E0E0E0;
    display: flex;
    align-items: center;
}

.page-index-core-offerings__why-choose-list li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

/* Final CTA Section */
.page-index-core-offerings__cta-final-section {
    background: linear-gradient(45deg, #00FFEE 0%, #FF0055 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-index-core-offerings__cta-final-content {
    max-width: 900px;
}

.page-index-core-offerings__cta-final-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-index-core-offerings__cta-final-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

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

    .page-index-core-offerings__grid,
    .page-index-core-offerings__promo-grid,
    .page-index-core-offerings__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-index-core-offerings__why-choose-list {
        grid-template-columns: 1fr;
    }

    .page-index-core-offerings__button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-index-core-offerings__cta-final-title {
        font-size: 2.5em;
    }

    .page-index-core-offerings__hero-section,
    .page-index-core-offerings__section,
    .page-index-core-offerings__cta-final-section {
        padding: 60px 0;
    }
}

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

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

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

    .page-index-core-offerings__section-description {
        font-size: 0.95em;
    }

    .page-index-core-offerings__grid-title,
    .page-index-core-offerings__promo-title,
    .page-index-core-offerings__guide-title {
        font-size: 1.4em;
    }

    .page-index-core-offerings__responsibility-list li,
    .page-index-core-offerings__why-choose-list li {
        font-size: 1em;
    }

    .page-index-core-offerings__cta-final-title {
        font-size: 2em;
    }

    .page-index-core-offerings__cta-final-description {
        font-size: 1em;
    }
}