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

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

.page--g section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page--g .section-title {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    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: var(--primary-color);
    border-radius: 2px;
}

.page--g .section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page--g .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #2F4F4F; /* Fallback for transparency */
}

.page--g .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page--g .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page--g .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page--g .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: rgba(47, 79, 79, 0.7); /* Dark green overlay */
    padding: 30px;
    border-radius: 8px;
    margin-top: -80px; /* Overlap with image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page--g .hero-title {
    font-size: 48px;
    color: var(--primary-color); /* Gold color */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g .hero-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page--g .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #2F4F4F;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
}

.page--g .cta-button:hover {
    background: #FFC107; /* Lighter gold */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page--g .section-intro {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 80px;
}

.page--g .intro-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page--g .feature-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page--g .feature-icon {
    width: 250px; /* Increased size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
}

.page--g .feature-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page--g .feature-text {
    font-size: 16px;
    color: #666666;
}

/* Types Section */
.page--g .section-types {
    background-color: #2F4F4F;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .section-types .section-title {
    color: var(--primary-color);
}

.page--g .section-types .section-title::after {
    background-color: #ffffff;
}

.page--g .section-types .section-description {
    color: #e0e0e0;
}

.page--g .type-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.page--g .card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page--g .card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page--g .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page--g .card-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page--g .card-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page--g .card-link:hover {
    color: var(--primary-color);
}

.page--g .card-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page--g .card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #2F4F4F;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page--g .card-button:hover {
    background-color: #FFC107;
}

/* Guide Section */
.page--g .section-guide {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page--g .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page--g .step-image {
    width: 250px; /* Increased size */
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
}

.page--g .step-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page--g .step-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.page--g .step-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page--g .step-button:hover {
    background-color: #1a3131;
}

/* Advantages Section */
.page--g .section-advantages {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page--g .advantage-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page--g .advantage-heading {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g .advantage-text {
    font-size: 16px;
    color: #666666;
}

/* Promotions Section */
.page--g .section-promotions {
    background-color: #2F4F4F;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .section-promotions .section-title {
    color: var(--primary-color);
}

.page--g .section-promotions .section-title::after {
    background-color: #ffffff;
}

.page--g .section-promotions .section-description {
    color: #e0e0e0;
}

.page--g .promo-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.page--g .promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page--g .promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page--g .promo-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    padding: 0 20px;
}

.page--g .promo-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    padding: 0 20px;
}

.page--g .promo-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #2F4F4F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page--g .promo-button:hover {
    background-color: #FFC107;
}

/* Responsible Section */
.page--g .section-responsible {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page--g .responsible-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .responsible-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page--g .responsible-heading {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g .responsible-text {
    font-size: 16px;
    color: #666666;
}

/* FAQ Section */
.page--g .section-faq {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g .faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.page--g .faq-question-title {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 25px;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #dc3545; /* Red for active */
}

.page--g .faq-answer-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

.page--g .faq-button {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.page--g .faq-button:hover {
    background-color: #1a3131;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page--g .hero-title {
        font-size: 42px;
    }
    .page--g .hero-subtitle {
        font-size: 20px;
    }
    .page--g .section-title {
        font-size: 32px;
    }
    .page--g .type-cards, .page--g .guide-steps, .page--g .advantage-list, .page--g .promo-cards, .page--g .responsible-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page--g .hero-section {
        padding: 40px 15px;
    }
    .page--g .hero-content {
        padding: 20px;
        margin-top: -60px;
    }
    .page--g .hero-title {
        font-size: 32px;
    }
    .page--g .hero-subtitle {
        font-size: 18px;
    }
    .page--g .cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    .page--g section {
        padding: 40px 0;
    }
    .page--g .section-title {
        font-size: 28px;
    }
    .page--g .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page--g .intro-features, .page--g .type-cards, .page--g .guide-steps, .page--g .advantage-list, .page--g .promo-cards, .page--g .responsible-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .page--g .feature-item, .page--g .card, .page--g .step-item, .page--g .advantage-item, .page--g .promo-card, .page--g .responsible-item {
        max-width: 90%;
        width: 100%;
    }
    .page--g .card-image {
        height: 200px;
    }
    .page--g .feature-icon, .page--g .step-image {
        width: 200px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .page--g .faq-question-title {
        font-size: 16px;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page--g .hero-title {
        font-size: 28px;
    }
    .page--g .hero-subtitle {
        font-size: 16px;
    }
    .page--g .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page--g .section-title {
        font-size: 24px;
    }
    .page--g .feature-title, .page--g .card-title, .page--g .step-title, .page--g .advantage-heading, .page--g .promo-title, .page--g .responsible-heading {
        font-size: 20px;
    }
    .page--g .feature-icon, .page--g .step-image {
        width: 180px;
    }
}