.page-g {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-g__hero-section {
    position: relative;
    max-width: 1390px; /* Boxed layout */
    margin: 0 auto;
    padding: 10px 20px 40px; /* Small top padding, more bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-g__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px; /* Space between image and content */
}

.page-g__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-g__hero-content {
    max-width: 900px;
}

.page-g__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    /* No fixed font-size for H1 as per rule */
}

.page-g__hero-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1.15em;
    margin-bottom: 30px;
}

.page-g__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.page-g__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2F6BFF, #6FA3FF); /* Using main/auxiliary for accent */
    border-radius: 2px;
}

.page-g__content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-g__text-content {
    color: #1F2D3D; /* Text Main */
    font-size: 1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-g__content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    object-fit: cover;
}

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

.page-g__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-g__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-g__feature-title {
    color: #2F6BFF; /* Main color for feature titles */
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-g__feature-description {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95em;
}

.page-g__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-g__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly inverse gradient or darker */
    transform: translateY(-2px);
}

.page-g__button--large {
    padding: 16px 35px;
    font-size: 1.2em;
    margin-right: 15px;
}

.page-g__button--secondary {
    background: none;
    border: 2px solid #2F6BFF; /* Main color as border */
    color: #2F6BFF; /* Text color same as border */
    box-shadow: none;
}

.page-g__button--secondary:hover {
    background: #2F6BFF; /* Fill with main color on hover */
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-g__cta-section {
    text-align: center;
    margin: 60px auto;
    padding: 40px 20px;
    max-width: 1200px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-g__cta-section .page-g__text-content {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-g__faq-section {
    max-width: 1000px;
}

.page-g__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-g__faq-question {
    color: #2F6BFF; /* Main color */
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-g__faq-question--active {
    color: #000000; /* Darker color when active */
}

.page-g__faq-answer {
    color: #1F2D3D; /* Text Main */
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-g__hero-section {
        padding: 10px 15px 30px;
    }

    .page-g__main-title {
        font-size: 1.8em; /* Responsive H1 font size */
        margin-bottom: 15px;
    }

    .page-g__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-g__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .page-g__content-section {
        padding: 15px;
        margin: 30px auto;
    }

    .page-g__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-g__button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-g__button--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .page-g__button--secondary {
        width: 100%;
    }

    .page-g__cta-section {
        padding: 30px 15px;
        margin: 40px auto;
    }

    /* Ensure content images are responsive and don't overflow */
    .page-g__content-image,
    .page-g__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-g__main-title {
        font-size: 1.5em;
    }
    .page-g__section-title {
        font-size: 1.5em;
    }
    .page-g__button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-g__button--large {
        font-size: 1em;
        padding: 10px 20px;
    }
}