/* style/-g.css */

/* Base styles for the page */
.page--g {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

.page--g .section-title {
    font-size: 2.8em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.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 .highlight {
    color: #8B0000;
    font-weight: bold;
}

/* Buttons */
.page--g .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page--g .btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page--g .btn-primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

.page--g .btn-secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.4);
}

.page--g .btn-secondary:hover {
    background-color: #6a0000;
    color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.5);
}

.page--g .btn-tertiary {
    background-color: #FFD700;
    color: #8B0000;
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.page--g .btn-tertiary:hover {
    background-color: #e6c200;
    color: #6a0000;
    transform: translateY(-1px);
}

.page--g .btn-large {
    padding: 15px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Hero Section */
.page--g .hero-section {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page--g .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page--g-pulse 10s infinite alternate;
}

@keyframes page--g-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page--g .hero-section .container {
    position: relative;
    z-index: 1;
}

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

.page--g .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page--g .hero-buttons {
    margin-top: 30px;
}

/* About Section */
.page--g .about-section {
    padding: 80px 0;
    background-color: #fff;
}

.page--g .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page--g .content-text {
    flex: 1;
    font-size: 1.1em;
    color: #555;
}

.page--g .content-text p {
    margin-bottom: 15px;
}

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

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

/* Features Section */
.page--g .features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

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

.page--g .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /* No filter property to change image color */
}

.page--g .feature-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page--g .feature-item p {
    color: #666;
}

/* Guide Section */
.page--g .guide-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.page--g .step-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page--g .step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.page--g .step-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page--g .step-item p {
    color: #666;
    margin-bottom: 20px;
}

/* Promotions Section */
.page--g .promotions-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.page--g .promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page--g .promotion-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #8B0000;
    font-size: 1.1em;
    color: #555;
}

.page--g .promotion-list li strong {
    color: #8B0000;
}

/* FAQ Section */
.page--g .faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.page--g .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page--g .faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page--g .faq-question {
    font-size: 1.4em;
    color: #8B0000;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.page--g .faq-question:hover {
    background-color: #fffaf0;
}

.page--g .faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page--g .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    color: #666;
}

.page--g .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-bottom: 20px;
}

/* Final CTA Section */
.page--g .cta-final-section {
    background-color: #8B0000;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page--g .cta-final-section .section-title {
    color: #FFD700;
}

.page--g .cta-final-section .section-title::after {
    background-color: #fff;
}

.page--g .cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Floating Menu */
.page--g .floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page--g .floating-btn {
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page--g .floating-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page--g .hero-title {
        font-size: 3em;
    }
    .page--g .hero-subtitle {
        font-size: 1.3em;
    }
    .page--g .section-title {
        font-size: 2.2em;
    }
    .page--g .content-grid {
        flex-direction: column;
    }
    .page--g .content-image {
        margin-top: 30px;
    }
    .page--g .feature-grid, .page--g .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page--g .hero-section {
        padding: 80px 0;
    }
    .page--g .hero-title {
        font-size: 2.5em;
    }
    .page--g .hero-subtitle {
        font-size: 1.1em;
    }
    .page--g .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page--g .btn-secondary {
        margin-left: 0;
    }
    .page--g .section-title {
        font-size: 1.8em;
    }
    .page--g .feature-item, .page--g .step-item {
        padding: 20px;
    }
    .page--g .floating-menu {
        flex-direction: row;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        right: auto;
        width: fit-content;
        padding: 8px 15px;
        background-color: rgba(255, 215, 0, 0.9);
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .page--g .floating-btn {
        background-color: transparent;
        color: #8B0000;
        padding: 5px 10px;
        box-shadow: none;
        font-size: 0.9em;
    }
    .page--g .floating-btn:hover {
        transform: none;
        background-color: rgba(139, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .page--g .hero-title {
        font-size: 2em;
    }
    .page--g .hero-subtitle {
        font-size: 1em;
    }
    .page--g .btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page--g .section-title {
        font-size: 1.6em;
    }
    .page--g .feature-title {
        font-size: 1.4em;
    }
    .page--g .step-number {
        font-size: 2.5em;
    }
    .page--g .step-title {
        font-size: 1.3em;
    }
    .page--g .faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page--g .floating-menu {
        gap: 5px;
        padding: 5px 10px;
    }
    .page--g .floating-btn {
        padding: 3px 8px;
        font-size: 0.8em;
    }
}