/* style/index-how-it-works.css */
.page-index-how-it-works {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-index-how-it-works__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-how-it-works__hero-section {
    background-color: #1A2E47; /* Main color */
    color: #ffffff; /* White text on dark background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-how-it-works__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 71, 0.9), rgba(255, 215, 0, 0.2));
    z-index: 0;
}

.page-index-how-it-works__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for emphasis */
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.page-index-how-it-works__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-index-how-it-works__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color */
    color: #1A2E47; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-index-how-it-works__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-how-it-works__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-how-it-works__section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-index-how-it-works__section-title {
    font-size: 2.2em;
    color: #1A2E47; /* Main color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.page-index-how-it-works__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color for underline */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-index-how-it-works__introduction p,
.page-index-how-it-works__operating-model p,
.page-index-how-it-works__user-benefits p,
.page-index-how-it-works__commitment p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-how-it-works__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-how-it-works__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-index-how-it-works__list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700; /* Auxiliary color for list item highlight */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.page-index-how-it-works__list li:hover {
    transform: translateX(5px);
}

.page-index-how-it-works__list h3 {
    color: #1A2E47; /* Main color for sub-titles */
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-how-it-works__list li p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

.page-index-how-it-works__user-benefits .page-index-how-it-works__list {
    list-style-type: disc;
    padding-left: 25px;
    max-width: 800px;
    margin: 30px auto;
}

.page-index-how-it-works__user-benefits .page-index-how-it-works__list li {
    background: none;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 10px;
    box-shadow: none;
    font-size: 1.1em;
    color: #444;
}

.page-index-how-it-works__user-benefits .page-index-how-it-works__list li strong {
    color: #1A2E47;
}

.page-index-how-it-works__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #1A2E47; /* Main color for border */
    color: #1A2E47; /* Main color for text */
    margin-top: 30px;
}

.page-index-how-it-works__cta-button--secondary:hover {
    background-color: #1A2E47;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-index-how-it-works__cta {
    background-color: #1A2E47; /* Main color for CTA section background */
    color: #ffffff; /* White text on dark background */
    text-align: center;
    padding: 80px 0;
    margin-top: 20px;
    border-radius: 10px;
}

.page-index-how-it-works__cta-content {
    max-width: 900px;
}

.page-index-how-it-works__section-title--light {
    color: #FFD700; /* Auxiliary color for light background title */
}

.page-index-how-it-works__section-title--light::after {
    background-color: #ffffff;
}

.page-index-how-it-works__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-how-it-works__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-how-it-works__cta-button--outline {
    background-color: transparent;
    border: 2px solid #FFD700; /* Auxiliary color for outline button */
    color: #FFD700;
}

.page-index-how-it-works__cta-button--outline:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-how-it-works__hero-title {
        font-size: 2em;
    }

    .page-index-how-it-works__hero-subtitle {
        font-size: 1em;
    }

    .page-index-how-it-works__section-title {
        font-size: 1.8em;
    }

    .page-index-how-it-works__list h3 {
        font-size: 1.4em;
    }

    .page-index-how-it-works__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-index-how-it-works__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-index-how-it-works__hero-title {
        font-size: 1.5em;
    }

    .page-index-how-it-works__section-title {
        font-size: 1.5em;
    }

    .page-index-how-it-works__list li {
        padding: 15px;
    }

    .page-index-how-it-works__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}