/* 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 20px;
}

.page--g__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g__section:nth-child(even) {
    background-color: #f2f4f6;
}

.page--g__section-title {
    font-size: 2.5em;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    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: #E74C3C;
    border-radius: 2px;
}

.page--g__section-subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page--g__hero {
    background: linear-gradient(135deg, #2C3E50 0%, #E74C3C 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page--g__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page--g__hero-actions .page--g__btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.page--g__btn--primary {
    background-color: #E74C3C;
    color: #ffffff;
    border: 2px solid #E74C3C;
}

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

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

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

.page--g__btn--download {
    background-color: #2ECC71;
    color: #ffffff;
    border: 2px solid #2ECC71;
}

.page--g__btn--download:hover {
    background-color: #27AE60;
    border-color: #27AE60;
    transform: translateY(-3px);
}

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

.page--g__content-grid:nth-child(even) .page--g__content-image {
    order: 2;
}

.page--g__content-text {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

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

.page--g__content-text .page--g__btn--link {
    display: inline-block;
    margin-top: 20px;
    background-color: #2C3E50;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page--g__content-text .page--g__btn--link:hover {
    background-color: #34495E;
}

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

.page--g__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

.page--g__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #E74C3C;
}

.page--g__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page--g__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page--g__feature-title {
    font-size: 1.5em;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__feature-description {
    color: #555;
}

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

.page--g__type-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2C3E50;
}

.page--g__type-title {
    font-size: 1.4em;
    color: #E74C3C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__type-description {
    color: #555;
}

.page--g__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    color: #444;
    margin-top: 20px;
}

.page--g__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page--g__ordered-list ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 5px;
}

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

.page--g__benefit-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page--g__benefit-card:hover {
    border-color: #E74C3C;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page--g__benefit-title {
    font-size: 1.5em;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__benefit-description {
    color: #555;
}

.page--g__cta {
    background: linear-gradient(45deg, #E74C3C, #F39C12);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}

.page--g__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

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

.page--g__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page--g__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.page--g__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E74C3C;
    transition: transform 0.3s ease;
}

.page--g__faq-question.active::after {
    transform: rotate(45deg);
}

.page--g__faq-answer {
    color: #555;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

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

.page--g__final-cta {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 40px;
}

.page--g__final-cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page--g__final-cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page--g__btn--final {
    background-color: #E74C3C;
    border-color: #E74C3C;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page--g__footer {
    background-color: #2C3E50;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    border-radius: 15px 15px 0 0;
}

.page--g__copyright {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.8em;
    }
    .page--g__hero-description {
        font-size: 1.1em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__content-grid {
        flex-direction: column;
    }
    .page--g__content-grid:nth-child(even) .page--g__content-image {
        order: unset;
    }
    .page--g__content-image, .page--g__content-text {
        flex: none;
        width: 100%;
    }
    .page--g__feature-grid, .page--g__benefit-grid, .page--g__type-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page--g__cta-title {
        font-size: 2.2em;
    }
    .page--g__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page--g__hero {
        padding: 80px 0;
    }
    .page--g__hero-title {
        font-size: 2.2em;
    }
    .page--g__hero-description {
        font-size: 1em;
    }
    .page--g__hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page--g__hero-actions .page--g__btn {
        width: 80%;
        margin-bottom: 15px;
    }
    .page--g__section {
        padding: 40px 0;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__section-subtitle {
        font-size: 1em;
    }
    .page--g__feature-grid, .page--g__benefit-grid, .page--g__type-list {
        grid-template-columns: 1fr;
    }
    .page--g__cta-title {
        font-size: 1.8em;
    }
    .page--g__cta-description {
        font-size: 1em;
    }
    .page--g__btn--large {
        padding: 15px 25px;
        font-size: 1em;
    }
    .page--g__faq-question {
        font-size: 1.1em;
    }
    .page--g__faq-answer {
        font-size: 0.95em;
    }
    .page--g__final-cta-title {
        font-size: 2em;
    }
    .page--g__final-cta-description {
        font-size: 1.1em;
    }
    .page--g__btn--final {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}