/* style/-g.css */
.page--g {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page--g__hero-section {
    background: linear-gradient(135deg, #FFD700, #4B0082);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page--g__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-left: 20px;
}

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

.page--g__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page--g__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page--g__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

/* General Section Styling */
.page--g__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page--g__section-title {
    font-size: 2.5em;
    color: #4B0082;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page--g__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page--g__sub-section-title {
    font-size: 1.8em;
    color: #4B0082;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

/* Buttons */
.page--g__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.1em;
    margin-right: 15px;
    margin-bottom: 15px;
}

.page--g__btn--primary {
    background-color: #FFD700;
    color: #4B0082;
    border: 2px solid #FFD700;
}

.page--g__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page--g__btn--secondary {
    background-color: #4B0082;
    color: #FFD700;
    border: 2px solid #4B0082;
}

.page--g__btn--secondary:hover {
    background-color: #3a0066;
    transform: translateY(-2px);
}

.page--g__btn--link {
    background-color: transparent;
    color: #4B0082;
    border: 2px solid #4B0082;
    padding: 10px 20px;
    font-size: 1em;
}

.page--g__btn--link:hover {
    background-color: #4B0082;
    color: #FFD700;
}

.page--g__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page--g__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Lists */
.page--g__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page--g__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
}

.page--g__list--small li {
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 5px;
}

.page--g__numbered-list {
    padding-left: 25px;
    margin: 20px 0;
    color: #333;
}

.page--g__numbered-list li {
    margin-bottom: 10px;
}

.page--g__nested-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* Card Grid */
.page--g__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page--g__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page--g__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page--g__card-title {
    font-size: 1.5em;
    color: #4B0082;
    padding: 20px 20px 10px;
    margin: 0;
}

.page--g__card-description {
    padding: 0 20px 20px;
    color: #555;
    flex-grow: 1;
}

/* Image Full Width */
.page--g__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Steps Section */
.page--g__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page--g__step-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.page--g__step-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page--g__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page--g__step-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
    min-width: 200px;
    min-height: 200px;
}

/* Promotions Section */
.page--g__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__promo-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page--g__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page--g__promo-title {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
    padding: 0 20px;
}

.page--g__promo-description {
    color: #555;
    margin-bottom: 20px;
    padding: 0 20px;
}

.page--g__promo-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

/* FAQ Section */
.page--g__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page--g__faq-question {
    background-color: #4B0082;
    color: #FFD700;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page--g__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page--g__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page--g__faq-answer {
    padding: 20px 25px;
    background-color: #fff;
    border-top: 1px solid #eee;
    color: #333;
    display: none;
}

/* Final CTA */
.page--g__cta-final {
    text-align: center;
    background: linear-gradient(45deg, #4B0082, #6a00c2);
    color: #fff;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 8px;
}

.page--g__cta-final .page--g__section-title {
    color: #FFD700;
}

.page--g__cta-final .page--g__section-title::after {
    background-color: #fff;
}

.page--g__cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #eee;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page--g__hero-section {
        flex-direction: column;
        text-align: center;
    }
    .page--g__hero-content {
        padding-left: 0;
        text-align: center;
    }
    .page--g__hero-image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
    .page--g__hero-title {
        font-size: 2.5em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__sub-section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page--g__hero-title {
        font-size: 2em;
    }
    .page--g__hero-description {
        font-size: 1em;
    }
    .page--g__section {
        padding: 40px 0;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .page--g__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 1.8em;
    }
    .page--g__section-title {
        font-size: 1.5em;
    }
    .page--g__sub-section-title {
        font-size: 1.3em;
    }
    .page--g__btn {
        width: 100%;
        margin-right: 0;
    }
    .page--g__card-grid, .page--g__steps, .page--g__promo-grid {
        grid-template-columns: 1fr;
    }
}