/* style/-g.css */

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

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

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

.page--g__section:nth-of-type(odd) {
    background-color: #f0f0f0;
}

.page--g__section-title {
    font-size: 2.8em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page--g__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page--g__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Dark Red to Gold */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page--g__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(139, 0, 0, 0.2) 70%);
    animation: page--g__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page--g__pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

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

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

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

.page--g__hero-buttons .page--g__btn {
    margin: 0 10px;
}

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

.page--g__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page--g__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page--g__btn--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page--g__btn--secondary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

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

.page--g__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page--g__btn--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    max-width: 300px;
}

.page--g__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 30px;
}

.page--g__content-grid--reverse {
    flex-direction: row-reverse;
}

.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;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page--g__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.page--g__image--small {
    max-width: 70%;
}

.page--g__image--large {
    max-width: 90%;
}

.page--g__link {
    color: #8B0000; /* Dark Red */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page--g__link:hover {
    color: #FFD700; /* Gold */
    text-decoration: underline;
}

.page--g__call-to-action {
    margin-top: 40px;
    font-size: 1.2em;
    color: #666;
}

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

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

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

.page--g__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

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

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

.page--g__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page--g__step-number {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page--g__step-title {
    font-size: 1.4em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 15px;
}

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

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

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

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

.page--g__tip-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

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

.page--g__security .page--g__content-text {
    text-align: left;
}

.page--g__security .page--g__content-text p {
    margin-bottom: 15px;
}

.page--g__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page--g__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page--g__faq-question {
    font-size: 1.3em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 10px;
}

.page--g__faq-answer {
    color: #555;
}

.page--g__cta {
    background: #8B0000; /* Dark Red */
    color: #fff;
    padding: 80px 0;
}

.page--g__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.8em;
    }
    .page--g__hero-description,
    .page--g__cta-description {
        font-size: 1.1em;
    }
    .page--g__section-title {
        font-size: 2.2em;
    }
    .page--g__content-grid {
        flex-direction: column;
        text-align: center;
    }
    .page--g__content-grid--reverse {
        flex-direction: column;
    }
    .page--g__image--small {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page--g__hero-title {
        font-size: 2.2em;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__hero-buttons .page--g__btn {
        display: block;
        margin: 15px auto;
    }
    .page--g__feature-grid,
    .page--g__guide-steps,
    .page--g__tips-list {
        grid-template-columns: 1fr;
    }
    .page--g__feature-item, .page--g__step-item, .page--g__tip-item {
        padding: 25px;
    }
    .page--g__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page--g__cta-title {
        font-size: 2.2em;
    }
}

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