:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-color: #0D0E12;
    --card-background: #17191F;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-g {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

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

.page-g__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 165, 58, 0.5);
}

.page-g__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-main-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-g__paragraph--highlight {
    font-weight: bold;
    color: var(--secondary-color);
}

.page-g__paragraph--cta {
    font-size: 18px;
    font-weight: bold;
    color: var(--glow-color);
    margin-top: 40px;
}

/* Hero Section */
.page-g__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

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

.page-g__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-g__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-g__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-g__main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 165, 58, 0.7);
}

.page-g__hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-g__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-g__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

.page-g__cta-button--large {
    padding: 18px 50px;
    font-size: 22px;
}

/* Buttons */
.page-g__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(255, 140, 26, 0.3);
}

.page-g__btn-primary:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 26, 0.5);
}

.page-g__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--card-background);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.page-g__btn-secondary:hover {
    background: var(--border-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Grid Containers */
.page-g__grid-container,
.page-g__features-grid,
.page-g__steps-grid,
.page-g__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Card Styles */
.page-g__card, .page-g__feature-item, .page-g__promo-card {
    background: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-g__card:hover, .page-g__feature-item:hover, .page-g__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-g__card img, .page-g__feature-item img, .page-g__promo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-g__card-title, .page-g__feature-title, .page-g__promo-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-g__card-description, .page-g__feature-description, .page-g__promo-description {
    font-size: 16px;
    color: var(--text-main-color);
}

/* Features Grid */
.page-g__features-grid .page-g__feature-item img {
    
    
    object-fit: contain;
    border-radius: 0;
    background-color: rgba(255, 140, 26, 0.1);
    border: none;
    padding: 15px;
    margin-bottom: 15px;
}

/* Steps Grid */
.page-g__steps-grid .page-g__step-item {
    position: relative;
    padding-top: 60px;
}

.page-g__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 3px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.7);
}

.page-g__step-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.page-g__step-description {
    font-size: 16px;
    color: var(--text-main-color);
}

/* FAQ Section */
.page-g__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-g__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-background);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

details.page-g__faq-item summary.page-g__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--secondary-color);
    font-weight: bold;
}

details.page-g__faq-item summary.page-g__faq-question::-webkit-details-marker {
    display: none;
}

details.page-g__faq-item summary.page-g__faq-question:hover {
    background: rgba(255, 140, 26, 0.1);
}

.page-g__faq-qtext {
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

details.page-g__faq-item[open] .page-g__faq-qtext {
    color: var(--secondary-color);
}

.page-g__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-g__faq-item[open] .page-g__faq-toggle {
    transform: rotate(45deg);
    color: var(--glow-color);
}

details.page-g__faq-item .page-g__faq-answer {
    padding: 0 25px 25px;
    background: rgba(255, 140, 26, 0.05);
    border-radius: 0 0 10px 10px;
    text-align: left;
    color: var(--text-main-color);
    font-size: 16px;
}

.page-g__faq-answer p {
    margin-bottom: 0;
}

/* Call to Action Section */
.page-g__call-to-action {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: #ffffff;
}

.page-g__call-to-action .page-g__section-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.page-g__call-to-action .page-g__paragraph {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-g__grid-container, .page-g__features-grid, .page-g__steps-grid, .page-g__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-g__section-title {
        font-size: 36px;
    }
    .page-g__main-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .page-g__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-g__hero-image img {
        border-radius: 8px;
    }
    .page-g__cta-button, .page-g__cta-button--large {
        padding: 12px 30px !important;
        font-size: 18px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-g__btn-primary, .page-g__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-g__section {
        padding: 40px 0;
    }
    .page-g__section-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .page-g__main-title {
        font-size: 38px;
    }
    .page-g__hero-description {
        font-size: 17px;
        margin-bottom: 25px;
    }
    .page-g__paragraph {
        font-size: 16px;
    }
    .page-g__card, .page-g__feature-item, .page-g__promo-card {
        padding: 20px;
    }
    .page-g__card-title, .page-g__feature-title, .page-g__promo-title {
        font-size: 20px;
    }
    .page-g__card-description, .page-g__feature-description, .page-g__promo-description {
        font-size: 15px;
    }
    .page-g__faq-list {
        padding: 0 15px;
    }
    details.page-g__faq-item summary.page-g__faq-question {
        padding: 15px 20px;
    }
    .page-g__faq-qtext {
        font-size: 16px;
    }
    .page-g__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-g__faq-item .page-g__faq-answer {
        padding: 0 20px 20px;
    }
    .page-g img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-g__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-g__grid-container, .page-g__features-grid, .page-g__steps-grid, .page-g__promo-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-g__main-title {
        font-size: 32px;
    }
    .page-g__hero-description {
        font-size: 16px;
    }
    .page-g__section-title {
        font-size: 26px;
    }
    .page-g__cta-button--large {
        font-size: 18px !important;
        padding: 15px 30px !important;
    }
}