html, body {
    overflow-x: hidden;
}

/* ========================
   1. HERO BANNER
   ======================== */
.gv-hero {
    display: flex;
    gap: 48px;
    align-items: center;
}

.gv-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.gv-hero-text h1 {
    font: var(--txt-h1);
    color: var(--color-txt);
}

.gv-hero-text h1 span {
    color: #1B92D1;
}

.gv-hero-subtitle {
    font: var(--p-all-txt);
    color: var(--color-txt);
    max-width: 540px;
    line-height: 1.7;
}

.gv-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.gv-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gv-hero-feature img {
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.gv-hero-feature p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

.gv-hero-img {
    flex-shrink: 0;
}

.gv-hero-img img {
    width: 28vw;
    max-width: 400px;
    min-width: 220px;
    animation: gv-levitation 1.5s ease-in-out infinite alternate;
}

@keyframes gv-levitation {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-18px); }
}

@media (max-width: 920px) {
    .gv-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .gv-hero-subtitle {
        max-width: 100%;
    }
    .gv-hero-text {
        align-items: center;
    }
    .gv-hero-feature {
        justify-content: center;
    }
    .gv-hero-img img {
        width: 220px;
    }
    .gv-hero-text .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ========================
   2. PROBLEMS & SOLUTIONS
   ======================== */
.gv-problems {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gv-problems-title {
    text-align: center;
    color: var(--color-txt);
}

.gv-problems-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.gv-problems-title p {
    font: var(--p-all-txt);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.gv-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.gv-problem-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gv-problem-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
}

.gv-problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.gv-problem-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.gv-problem-icon img {
    width: 28px;
    height: 28px;
}

.gv-problem-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gv-problem-label {
    font: 700 11px/1 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff6b6b;
    padding: 5px 10px;
    background: rgba(255, 107, 107, 0.12);
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 4px;
}

.gv-solution-label {
    color: #6bffb0;
    background: rgba(107, 255, 176, 0.12);
    margin-top: 12px;
}

.gv-problem-body h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-bottom: 4px;
}

.gv-problem-body p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .gv-problems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .gv-problem-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .gv-problem-label {
        align-self: center;
    }
}

/* ========================
   3. POPULAR GAMES GRID
   ======================== */
.gv-games {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gv-games-title {
    text-align: center;
    color: var(--color-txt);
}

.gv-games-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.gv-games-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gv-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gv-game-card {
    border-radius: 20px;
    border: 1px solid #FFFFFF26;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: rgba(3, 10, 32, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    cursor: default;
    position: relative;
    overflow: hidden;
}

a.gv-game-card {
    cursor: pointer;
}

.gv-game-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
    background: rgba(27, 146, 209, 0.08);
}

.gv-game-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 20px/1 'Inter', sans-serif;
    color: #fff;
    flex-shrink: 0;
}

.gv-game-roblox .gv-game-icon  { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.gv-game-brawl .gv-game-icon   { background: linear-gradient(135deg, #f39c12, #e67e22); }
.gv-game-fortnite .gv-game-icon{ background: linear-gradient(135deg, #3498db, #2980b9); }
.gv-game-valorant .gv-game-icon{ background: linear-gradient(135deg, #ff4655, #bd3944); }
.gv-game-cs2 .gv-game-icon     { background: linear-gradient(135deg, #e67e22, #d35400); }
.gv-game-dota .gv-game-icon    { background: linear-gradient(135deg, #e74c3c, #8e1a1a); }
.gv-game-pubg .gv-game-icon    { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.gv-game-genshin .gv-game-icon { background: linear-gradient(135deg, #9b59b6, #6c3483); }

.gv-game-name {
    font: 700 clamp(14px, 1.4vw, 17px)/clamp(18px, 2vw, 22px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.gv-game-note {
    font: 300 clamp(11px, 1vw, 13px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.6;
}

@media (max-width: 920px) {
    .gv-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .gv-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================
   4. GAMING PERFORMANCE
   ======================== */
.gv-performance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gv-performance-title {
    text-align: center;
    color: var(--color-txt);
}

.gv-performance-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.gv-performance-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.gv-performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gv-performance-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gv-performance-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
}

.gv-performance-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.gv-performance-card.gv-performance-accent {
    border-color: #1B92D180;
}

.gv-performance-card.gv-performance-accent::before {
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #1B92D140 0%,
        #030A20 70%
    );
}

.gv-performance-location {
    font: 700 clamp(14px, 1.3vw, 17px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gv-performance-card.gv-performance-accent .gv-performance-location {
    opacity: 1;
    color: #00e5ff;
}

.gv-performance-ping {
    font: 700 clamp(20px, 2vw, 28px)/1.2 'Inter', sans-serif;
    color: var(--color-txt);
}

.gv-performance-bar-wrap {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.gv-performance-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #4dff88, #1B92D1);
    transition: width 0.6s ease;
}

.gv-performance-card.gv-performance-accent .gv-performance-bar {
    background: linear-gradient(90deg, #1B92D1, #00e5ff);
}

.gv-performance-speed {
    font: 700 clamp(13px, 1.3vw, 16px)/1.4 'Inter', sans-serif;
    color: #1B92D1;
}

.gv-performance-card.gv-performance-accent .gv-performance-speed {
    color: #00e5ff;
}

.gv-performance-desc {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.8;
}

@media (max-width: 920px) {
    .gv-performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gv-performance-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   5. COMPARISON: WITHOUT vs WITH VPN
   ======================== */
.gv-compare {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gv-compare-title {
    text-align: center;
    color: var(--color-txt);
}

.gv-compare-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.gv-compare-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.gv-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.gv-compare-col {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: rgba(3, 10, 32, 0.5);
}

.gv-compare-col::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gv-compare-without::before {
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #5a1a1a 0%,
        #030A20 70%
    );
}

.gv-compare-with::before {
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #0a4a2a 0%,
        #030A20 70%
    );
}

.gv-compare-without {
    border-color: #ff4d4d30;
}

.gv-compare-with {
    border-color: #4dff8830;
}

.gv-compare-col-header {
    padding: 20px 28px;
    border-bottom: 1px solid #FFFFFF15;
}

.gv-compare-without .gv-compare-col-header span {
    font: 700 clamp(18px, 1.8vw, 24px)/1.3 'Inter', sans-serif;
    color: #ff6b6b;
}

.gv-compare-with .gv-compare-col-header span {
    font: 700 clamp(18px, 1.8vw, 24px)/1.3 'Inter', sans-serif;
    color: #6bffb0;
}

.gv-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 28px;
    border-bottom: 1px solid #FFFFFF08;
}

.gv-compare-item:last-child {
    border-bottom: none;
}

.gv-compare-cross {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.12);
    border-radius: 50%;
    margin-top: 1px;
}

.gv-compare-check {
    font-size: 16px;
    font-weight: 700;
    color: #6bffb0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 255, 176, 0.12);
    border-radius: 50%;
    margin-top: 1px;
}

.gv-compare-item p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    line-height: 1.6;
}

.gv-compare-negative p {
    opacity: 0.7;
}

.gv-compare-positive p {
    opacity: 0.95;
}

@media (max-width: 920px) {
    .gv-compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   6. VPN FOR PC GAMERS
   ======================== */
.gv-pc {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    width: 100%;
}

.gv-pc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: 100%;
}

.gv-pc-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    padding: 60px 0;
    flex: 1;
}

.gv-pc-content h2 {
    font: var(--h2-txt);
}

.gv-pc-content p {
    font: var(--p-all-txt);
    line-height: 1.7;
    max-width: 560px;
}

.gv-pc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gv-pc-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gv-pc-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.gv-pc-img {
    flex-shrink: 0;
}

.gv-pc-img img {
    width: 22vw;
    max-width: 320px;
    min-width: 180px;
    animation: gv-levitation 1.5s ease-in-out infinite alternate;
}

@media (max-width: 920px) {
    .gv-pc {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    .gv-pc-content {
        align-items: center;
        padding: 40px 0;
    }
    .gv-pc-content p {
        max-width: 100%;
    }
    .gv-pc-list li {
        justify-content: center;
    }
    .gv-pc-img {
        padding-bottom: 40px;
    }
    .gv-pc-img img {
        width: 200px;
    }
}

/* ========================
   7. VPN FOR MOBILE GAMERS
   ======================== */
.gv-mobile {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.gv-mobile-img {
    flex-shrink: 0;
}

.gv-mobile-img img {
    width: 22vw;
    max-width: 320px;
    min-width: 180px;
    animation: gv-levitation 1.5s ease-in-out infinite alternate;
}

.gv-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    flex: 1;
}

.gv-mobile-content h2 {
    font: var(--h2-txt);
}

.gv-mobile-content p {
    font: var(--p-all-txt);
    line-height: 1.7;
    max-width: 560px;
}

.gv-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gv-mobile-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gv-mobile-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .gv-mobile {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }
    .gv-mobile-content {
        align-items: center;
    }
    .gv-mobile-content p {
        max-width: 100%;
    }
    .gv-mobile-list li {
        justify-content: center;
    }
    .gv-mobile-img img {
        width: 200px;
    }
}

/* ========================
   8. PLATFORM CARDS
   ======================== */
.gv-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gv-platforms-title {
    text-align: center;
    color: var(--color-txt);
}

.gv-platforms-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.gv-platforms-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gv-platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.gv-platform-card {
    border-radius: 20px;
    border: 1px solid #FFFFFF26;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: rgba(3, 10, 32, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.gv-platform-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
    background: rgba(27, 146, 209, 0.1);
}

.gv-platform-card img {
    width: 48px;
    height: 48px;
}

.gv-platform-card span {
    font: 700 clamp(14px, 1.5vw, 18px)/clamp(18px, 2vw, 24px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.gv-platform-card .gv-platform-note {
    font: 300 clamp(11px, 1vw, 13px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.6;
}

.gv-platform-card .btn {
    font-size: clamp(12px, 1.2vw, 14px);
    padding: 8px 20px;
}

@media (max-width: 920px) {
    .gv-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .gv-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================
   9. HOW TO CONNECT (STEPS)
   ======================== */
.gv-steps {
    display: flex;
    gap: 80px;
    align-items: center;
}

.gv-steps-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    width: 45%;
}

.gv-steps-text h2 {
    font: var(--h2-txt);
}

.gv-steps-text p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.gv-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.gv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.gv-step-num {
    width: 52px;
    height: 52px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.gv-step-num span {
    font: 700 22px/1 'Inter', sans-serif;
    color: #1B92D1;
}

.gv-step p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

@media (max-width: 920px) {
    .gv-steps {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .gv-steps-text {
        width: 100%;
        align-items: center;
    }
}

/* ========================
   10. FREE TRIAL CTA
   ======================== */
.gv-trial {
    position: relative;
    width: 100%;
}

.gv-trial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: 100%;
}

.gv-trial-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}

.gv-trial-img img {
    width: 24vw;
    max-width: 340px;
    min-width: 180px;
}

.gv-trial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
}

.gv-trial-content h2 {
    font: var(--h2-txt);
}

.gv-trial-content p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.gv-trial-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gv-trial-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gv-trial-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .gv-trial-inner {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .gv-trial-list li {
        justify-content: center;
    }
    .gv-trial-img img {
        width: 180px;
    }
    .gv-trial-content .btn {
        align-self: center;
    }
}

/* ========================
   12. SEO TEXT BLOCK
   ======================== */
.gv-seo-text {
    color: var(--color-txt);
    max-width: 900px;
    margin: 0 auto;
}

.gv-seo-text h2 {
    font: var(--h2-txt);
    text-align: center;
    margin-bottom: 24px;
}

.gv-seo-text h3 {
    font: 700 clamp(17px, 1.6vw, 22px)/clamp(22px, 2.2vw, 28px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-top: 24px;
    margin-bottom: 12px;
}

.gv-seo-text p {
    font: var(--p-all-txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.gv-seo-text ul {
    list-style: none;
    margin-bottom: 16px;
}

.gv-seo-text ul li {
    font: var(--p-all-txt);
    color: var(--color-txt);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.gv-seo-text ul li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: #1B92D1;
}

/* ========================
   13. FAQ ACCORDION
   ======================== */
.gv-faq {
    color: var(--color-txt);
}

.gv-faq .questions-title {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.gv-faq .subtitle-question {
    font: var(--subtitle-question);
    color: var(--color-txt);
}

.gv-faq .questions {
    border-bottom: 1px solid #fff4;
    display: flex;
    flex-direction: column;
}

.gv-faq .questions input {
    display: none;
}

.gv-faq .questions label {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
}

.gv-faq .arrow-icon {
    width: 33px;
    transition: transform 0.2s ease;
}

.gv-faq .questions input:checked + .custom-label .arrow-icon {
    transform: rotate(180deg);
}

.gv-faq .question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.gv-faq .questions input:checked ~ .question-content {
    max-height: 700px;
}

.gv-faq .question-content p {
    font: var(--txt-ques);
    color: var(--color-txt);
    line-height: 1.6;
}

.gv-faq .question-content > *:last-child {
    padding-bottom: 10px;
}

.gv-faq .question-title-txt {
    font: var(--txt-questions);
    color: var(--color-txt);
}

@media (max-width: 720px) {
    .gv-faq .questions input:checked ~ .question-content {
        max-height: 2000px;
    }
}
