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

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

.page--g__hero {
    background: linear-gradient(135deg, #004AAD, #002B7A);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page--g__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page--g__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

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

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

.page--g__btn--secondary {
    background-color: transparent;
    color: #004AAD;
    border: 2px solid #004AAD;
}

.page--g__btn--secondary:hover {
    background-color: #004AAD;
    color: #fff;
    transform: translateY(-2px);
}

.page--g__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page--g__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page--g__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page--g__section--dark {
    background-color: #002B7A;
    color: #fff;
}

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

.page--g__section-title {
    font-size: 2.5em;
    color: #004AAD;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.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__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.page--g__section--dark .page--g__section-subtitle {
    color: #ccc;
}

.page--g__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page--g__text-content {
    flex: 1;
}

.page--g__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page--g__image-content {
    flex: 1;
    text-align: center;
}

.page--g__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page--g__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page--g__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page--g__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease;
}

.page--g__section--dark .page--g__card {
    background-color: #004AAD;
    color: #fff;
}

.page--g__card:hover {
    transform: translateY(-5px);
}

.page--g__card-title {
    font-size: 1.5em;
    color: #004AAD;
    margin-bottom: 15px;
    text-align: center;
}

.page--g__section--dark .page--g__card-title {
    color: #FFD700;
}

.page--g__list {
    list-style: none;
    padding: 0;
}

.page--g__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page--g__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page--g__note {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #777;
}

.page--g__section--dark .page--g__note {
    color: #aaa;
}

.page--g__center-btn {
    text-align: center;
    margin-top: 40px;
}

.page--g__center-btn-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page--g__feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page--g__feature-card:hover {
    transform: translateY(-5px);
}

.page--g__feature-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page--g__feature-title {
    font-size: 1.3em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page--g__feature-description {
    font-size: 0.95em;
    color: #555;
}

.page--g__section--alt {
    background-color: #f0f4f8;
}

.page--g__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page--g__benefit-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page--g__benefit-item:hover {
    transform: translateY(-5px);
}

.page--g__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page--g__benefit-title {
    font-size: 1.4em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page--g__benefit-description {
    font-size: 0.95em;
    color: #555;
}

.page--g__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page--g__step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.page--g__step-item:hover {
    transform: translateY(-5px);
}

.page--g__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #004AAD;
    color: #FFD700;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page--g__step-title {
    font-size: 1.3em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page--g__step-description {
    font-size: 0.95em;
    color: #555;
}

.page--g__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page--g__strategy-item {
    background-color: #004AAD;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--g__strategy-item:hover {
    background-color: #002B7A;
    transform: translateY(-5px);
}

.page--g__strategy-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page--g__strategy-description {
    font-size: 0.95em;
    color: #ccc;
}

.page--g__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page--g__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page--g__promo-card:hover {
    transform: translateY(-5px);
}

.page--g__promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page--g__promo-title {
    font-size: 1.3em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page--g__promo-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page--g__section--download {
    background: linear-gradient(90deg, #004AAD, #002B7A);
    color: #fff;
    padding: 80px 0;
}

.page--g__download-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page--g__download-text {
    flex: 1;
}

.page--g__section--download .page--g__section-title {
    color: #FFD700;
    text-align: left;
}

.page--g__section--download .page--g__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page--g__download-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #eee;
}

.page--g__download-image {
    flex: 1;
    text-align: center;
}

.page--g__download-image .page--g__image {
    max-width: 80%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page--g__reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page--g__reason-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page--g__reason-title {
    font-size: 1.4em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page--g__reason-description {
    font-size: 0.95em;
    color: #555;
}

.page--g__section--faq .page--g__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page--g__faq-item {
    background-color: #004AAD;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.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: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #eee;
}

.page--g__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page--g__section--cta {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.page--g__cta-title {
    font-size: 2.5em;
    color: #004AAD;
    margin-bottom: 20px;
}

.page--g__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.5em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__content-wrapper, .page--g__download-content {
        flex-direction: column;
        text-align: center;
    }
    .page--g__section--download .page--g__section-title {
        text-align: center;
    }
    .page--g__section--download .page--g__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page--g__download-image .page--g__image {
        max-width: 100%;
    }
    .page--g__grid--2-cols {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page--g__hero {
        padding: 80px 0;
    }
    .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: 10px 20px;
        font-size: 0.9em;
    }
    .page--g__center-btn-group {
        flex-direction: column;
        gap: 15px;
    }
    .page--g__download-content {
        gap: 30px;
    }
    .page--g__cta-title {
        font-size: 2em;
    }
    .page--g__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 1.8em;
    }
    .page--g__section-title {
        font-size: 1.6em;
    }
    .page--g__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page--g__feature-image {
        height: 150px;
    }
    .page--g__promo-image {
        height: 150px;
    }
    .page--g__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page--g__faq-answer.active {
        padding: 10px 20px 20px;
    }
}