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

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

.page--g__hero {
    background: linear-gradient(135deg, #007BFF 0%, #FFC107 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page--g__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page--g__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

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

.page--g__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page--g__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

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

.page--g__content-grid .page--g__text-content {
    flex: 1;
}

.page--g__content-grid .page--g__image-wrapper {
    flex: 1;
    text-align: center;
}

.page--g__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page--g__about-us p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page--g__about-us .page--g__btn {
    margin-top: 20px;
}

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

.page--g__feature-item, .page--g__type-item, .page--g__tip-item, .page--g__promo-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__feature-item:hover, .page--g__type-item:hover, .page--g__tip-item:hover, .page--g__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.page--g__feature-title, .page--g__type-title, .page--g__tip-title, .page--g__promo-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page--g__center-btn {
    text-align: center;
    margin-top: 40px;
}

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

.page--g__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page--g__step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFC107;
    color: #0056b3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    border: 3px solid #fff;
}

.page--g__steps li:nth-child(1)::before { content: '1'; }
.page--g__steps li:nth-child(2)::before { content: '2'; }
.page--g__steps li:nth-child(3)::before { content: '3'; }
.page--g__steps li:nth-child(4)::before { content: '4'; }

.page--g__step-title {
    font-size: 1.3em;
    color: #007BFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page--g__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page--g__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.page--g__faq-question {
    font-size: 1.25em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page--g__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFC107;
}

.page--g__faq-item .page--g__btn {
    margin-top: 15px;
}

.page--g__cta {
    background: #007BFF;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page--g__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page--g__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.page--g__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page--g__btn--primary {
    background-color: #FFC107;
    color: #0056b3;
    border: 2px solid #FFC107;
}

.page--g__btn--primary:hover {
    background-color: #e0a800;
    color: #004085;
    transform: translateY(-2px);
}

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

.page--g__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.page--g__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.8em;
    }
    .page--g__hero-subtitle {
        font-size: 1.3em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__content-grid {
        flex-direction: column;
    }
    .page--g__content-grid .page--g__image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
    .page--g__feature-grid, .page--g__type-grid, .page--g__tips-grid, .page--g__promo-grid, .page--g__steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page--g__cta-title {
        font-size: 2.5em;
    }
    .page--g__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page--g__hero {
        padding: 80px 0 60px;
    }
    .page--g__hero-title {
        font-size: 2.2em;
    }
    .page--g__hero-subtitle {
        font-size: 1.1em;
    }
    .page--g__section {
        padding: 40px 0;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__section-description {
        font-size: 1em;
    }
    .page--g__feature-grid, .page--g__type-grid, .page--g__tips-grid, .page--g__promo-grid, .page--g__steps {
        grid-template-columns: 1fr;
    }
    .page--g__cta-title {
        font-size: 2em;
    }
    .page--g__cta-description {
        font-size: 1em;
    }
    .page--g__hero-actions .page--g__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 1.8em;
    }
    .page--g__hero-subtitle {
        font-size: 0.9em;
    }
    .page--g__section-title {
        font-size: 1.5em;
    }
    .page--g__feature-title, .page--g__type-title, .page--g__tip-title, .page--g__promo-title {
        font-size: 1.3em;
    }
    .page--g__cta-title {
        font-size: 1.6em;
    }
    .page--g__cta-description {
        font-size: 0.9em;
    }
}