/* style/-g.css */
.page--g {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2540; /* Primary dark blue background */
}

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

.page--g__section {
    padding: 60px 0;
}

.page--g__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    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__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #D0D0D0;
}

.page--g__hero-section {
    background: linear-gradient(135deg, #0A2540, #1a3a5a);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page--g__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:cockfighting,arena,crowd,dynamic]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page--g__hero-section .page--g__container {
    position: relative;
    z-index: 1;
}

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

.page--g__hero-description {
    font-size: 1.3em;
    color: #F0F0F0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

.page--g__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2540; /* Dark blue */
}

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

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

.page--g__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2540;
    transform: translateY(-3px);
}

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

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

.page--g__feature-item, .page--g__type-item {
    background-color: #1a3a5a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page--g__feature-item:hover, .page--g__type-item:hover {
    transform: translateY(-5px);
}

.page--g__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page--g__feature-heading, .page--g__type-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page--g__feature-item p, .page--g__type-item p {
    font-size: 1em;
    color: #D0D0D0;
    line-height: 1.6;
}

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

.page--g__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 900px;
    margin: 0 auto;
}

.page--g__step-list li {
    background-color: #1a3a5a;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 80px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page--g__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A2540;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4em;
}

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

.page--g__step-list p {
    font-size: 1em;
    color: #D0D0D0;
    line-height: 1.6;
    text-align: left;
}

.page--g__step-list .page--g__btn {
    margin-top: 20px;
}

.page--g__strategy-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page--g__strategy-list li {
    background-color: #1a3a5a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page--g__strategy-list p {
    font-size: 1em;
    color: #D0D0D0;
    line-height: 1.6;
    text-align: left;
}

.page--g__cta-content {
    text-align: center;
    background-color: #FFD700; /* Gold background for CTA */
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #0A2540; /* Dark blue text on gold background */
}

.page--g__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2540;
}

.page--g__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #0A2540;
}

.page--g__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background-color: #1a3a5a;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page--g__app-image {
    flex: 1 1 350px;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: auto;
}

.page--g__app-text {
    flex: 1 1 400px;
    text-align: left;
}

.page--g__app-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page--g__app-description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #D0D0D0;
    margin-bottom: 30px;
}

.page--g__faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page--g__faq-item {
    background-color: #1a3a5a;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page--g__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page--g__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page--g__faq-answer {
    font-size: 1em;
    color: #D0D0D0;
    line-height: 1.6;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

.page--g__copyright-footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #0A2540;
    color: #A0A0A0;
    font-size: 0.9em;
    border-top: 1px solid #1a3a5a;
}

@media (max-width: 768px) {
    .page--g__hero-title {
        font-size: 2.5em;
    }
    .page--g__hero-description {
        font-size: 1.1em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__feature-grid, .page--g__type-grid {
        grid-template-columns: 1fr;
    }
    .page--g__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page--g__app-image {
        order: -1; /* Image first on mobile */
    }
    .page--g__app-text {
        text-align: center;
    }
    .page--g__step-list li {
        padding-left: 30px;
    }
    .page--g__step-list li::before {
        position: static;
        transform: none;
        margin-bottom: 10px;
        display: inline-flex;
        vertical-align: middle;
        margin-right: 10px;
    }
    .page--g__step-heading {
        display: inline;
        vertical-align: middle;
    }
}

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