:root {
    --gtb-primary: #2e8b57;
    --gtb-secondary: #ffd700;
    --gtb-accent: #005a82;
    --gtb-light: #f8f9fa;
    --gtb-dark: #343a40;
    --gtb-success: #28a745;
    --gtb-error: #dc3545;
    --gtb-border-radius: 12px;
    --gtb-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    --gtb-transition: all 0.3s ease;
}

*, *::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka One', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    margin-bottom: 1rem;
    color: var(--gtb-dark);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--gtb-accent);
    transition: var(--gtb-transition);
}

a:hover {
    color: var(--gtb-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gtb-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--gtb-secondary);
    vertical-align: middle;
}

.gtb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gtb-container-wide {
    max-width: 1400px;
}

.gtb-section {
    padding: 5rem 0;
    position: relative;
}

.gtb-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gtb-primary);
    position: relative;
    display: inline-block;
}

.gtb-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gtb-secondary);
    border-radius: 2px;
}

.gtb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--gtb-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gtb-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--gtb-transition);
    z-index: -1;
}

.gtb-button:hover::before {
    width: 100%;
}

.gtb-button-primary {
    background-color: var(--gtb-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.gtb-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(46, 139, 87, 0.4);
}

.gtb-button-secondary {
    background-color: var(--gtb-secondary);
    color: var(--gtb-dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.gtb-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.gtb-button-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.gtb-header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--gtb-transition);
}

.gtb-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gtb-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gtb-logo-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gtb-logo {
    height: 50px;
    width: auto;
    transition: var(--gtb-transition);
}

.gtb-header.scrolled .gtb-logo {
    height: 40px;
}

.gtb-title {
    font-size: 1.75rem;
    color: var(--gtb-primary);
    background: linear-gradient(to right, var(--gtb-primary), var(--gtb-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--gtb-transition);
}

.gtb-header.scrolled .gtb-title {
    font-size: 1.5rem;
}

.gtb-menu-toggle {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--gtb-primary);
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.gtb-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.gtb-nav-link {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gtb-dark);
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.gtb-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gtb-primary);
    transition: var(--gtb-transition);
}

.gtb-nav-link:hover:after {
    width: 100%;
}

.gtb-nav-link:hover {
    color: var(--gtb-primary);
}

.gtb-hero {
    padding: 10rem 0 6rem;
    background: url('../gtb-image/gtb-img-bg-1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
}

.gtb-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 90, 130, 0.8) 0%, rgba(46, 139, 87, 0.8) 100%);
}

.gtb-hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gtb-hero-heading {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gtb-hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.gtb-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.gtb-game {
    background: #f8f9fa;
    color: white;
    padding: 6rem 0;
}

.gtb-game:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.gtb-game-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.gtb-game-content {
    flex: 1;
    max-width: 600px;
}

.gtb-game-title {
    font-size: 2.5rem;
    color: var(--gtb-secondary);
    margin-bottom: 1.5rem;
}

.gtb-game-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.gtb-game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gtb-game-feature {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gtb-game-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.gtb-game-image {
    border-radius: var(--gtb-border-radius);
    box-shadow: var(--gtb-box-shadow);
    transition: var(--gtb-transition);
}

.gtb-game-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--gtb-secondary);
    color: var(--gtb-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.gtb-benefits {
    background-color: white;
}

.gtb-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gtb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gtb-benefit-card {
    background-color: white;
    border-radius: var(--gtb-border-radius);
    padding: 2rem;
    box-shadow: var(--gtb-box-shadow);
    transition: var(--gtb-transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gtb-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gtb-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gtb-primary);
    display: inline-block;
    background: linear-gradient(135deg, var(--gtb-primary), var(--gtb-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gtb-benefit-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gtb-dark);
}

.gtb-benefit-description {
    color: #666;
    font-size: 1rem;
}

.gtb-testimonials {
    background-color: #f8f9fa;
}

.gtb-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gtb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gtb-testimonial-card {
    background-color: white;
    border-radius: var(--gtb-border-radius);
    padding: 2rem;
    box-shadow: var(--gtb-box-shadow);
    transition: var(--gtb-transition);
    text-align: center;
}

.gtb-testimonial-card:hover {
    transform: translateY(-5px);
}

.gtb-testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gtb-secondary);
}

.gtb-testimonial-name {
    font-size: 1.3rem;
    color: var(--gtb-primary);
    margin-bottom: 0.5rem;
}

.gtb-testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.gtb-testimonial-rating {
    color: var(--gtb-secondary);
    font-size: 1.2rem;
}

.gtb-contact {
    background-color: white;
}

.gtb-contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.gtb-contact-form {
    flex: 1;
    background-color: white;
    border-radius: var(--gtb-border-radius);
    padding: 2.5rem;
    box-shadow: var(--gtb-box-shadow);
}

.gtb-form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.gtb-input, .gtb-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid #ddd;
    border-radius: var(--gtb-border-radius);
    font-family: 'Fredoka One', sans-serif;
    font-size: 1rem;
    transition: var(--gtb-transition);
}

.gtb-input:focus, .gtb-textarea:focus {
    border-color: var(--gtb-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
}

.gtb-input.error, .gtb-textarea.error {
    border-color: var(--gtb-error);
}

.gtb-textarea {
    min-height: 150px;
    resize: vertical;
}

.gtb-form-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gtb-primary);
    font-size: 1.25rem;
}

.gtb-form-error {
    color: var(--gtb-error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.gtb-contact-info {
    flex: 1;
    background-color: var(--gtb-light);
    border-radius: var(--gtb-border-radius);
    padding: 2.5rem;
    box-shadow: var(--gtb-box-shadow);
}

.gtb-contact-list {
    list-style: none;
}

.gtb-contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.gtb-contact-icon {
    margin-right: 1.25rem;
    color: var(--gtb-primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.gtb-contact-text {
    color: #555;
    font-size: 1.1rem;
}

.gtb-faq {
    background: url('../gtb-image/gtb-img-bg-2.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.gtb-faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.gtb-faq-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gtb-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gtb-faq-item {
    background-color: white;
    border-radius: var(--gtb-border-radius);
    padding: 1.5rem;
    box-shadow: var(--gtb-box-shadow);
    transition: var(--gtb-transition);
}

.gtb-faq-item:hover {
    transform: translateY(-5px);
}

.gtb-faq-question {
    font-size: 1.2rem;
    color: var(--gtb-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gtb-faq-answer {
    color: #666;
}

.gtb-newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.gtb-input-newsletter {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1rem;
    transition: var(--gtb-transition);
}

.gtb-input-newsletter:focus {
    border-color: var(--gtb-primary);
    outline: none;
}

.gtb-button-newsletter {
    background-color: var(--gtb-primary);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--gtb-transition);
}

.gtb-button-newsletter:hover {
    background-color: var(--gtb-accent);
}

.gtb-footer {
    background-color: var(--gtb-dark);
    color: white;
    padding: 4rem 0 0;
}

.gtb-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.gtb-footer-logo {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gtb-footer-description {
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.gtb-footer-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.gtb-footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gtb-secondary);
}

.gtb-footer-links {
    list-style: none;
}

.gtb-footer-link {
    color: #adb5bd;
    display: block;
    padding: 0.5rem 0;
    transition: var(--gtb-transition);
}

.gtb-footer-link:hover {
    color: white;
    padding-left: 0.5rem;
}

.gtb-footer-link i {
    margin-right: 0.5rem;
    color: var(--gtb-secondary);
}

.gtb-footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid #495057;
    text-align: center;
}

.gtb-copyright {
    color: #adb5bd;
    font-size: 0.9rem;
}

.gtb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--gtb-transition);
}

.gtb-modal.active {
    opacity: 1;
    visibility: visible;
}

.gtb-modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--gtb-border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: var(--gtb-transition);
}

.gtb-modal.active .gtb-modal-content {
    transform: translateY(0);
}

.gtb-modal-icon {
    font-size: 4rem;
    color: var(--gtb-success);
    margin-bottom: 1.5rem;
}

.gtb-modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gtb-primary);
}

.gtb-modal-text {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
}

.gtb-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: var(--gtb-transition);
}

.gtb-modal-close:hover {
    color: var(--gtb-error);
}

.gtb-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gtb-dark);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.gtb-cookies-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gtb-cookies-text {
    flex: 1;
}

.gtb-cookies-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gtb-cookies-message {
    color: #adb5bd;
    font-size: 0.95rem;
}

.gtb-cookies-link {
    color: var(--gtb-secondary);
    text-decoration: underline;
}

.gtb-cookies-buttons {
    display: flex;
    gap: 1rem;
}

.gtb-button-cookies {
    padding: 0.75rem 1.5rem;
    min-width: 120px;
}

.gtb-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.gtb-age-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--gtb-border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.gtb-age-icon {
    font-size: 4rem;
    color: var(--gtb-primary);
    margin-bottom: 1.5rem;
}

.gtb-age-title {
    font-size: 2rem;
    color: var(--gtb-primary);
    margin-bottom: 1rem;
}

.gtb-age-text {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
}

.gtb-age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.gtb-button-age {
    padding: 0.75rem 2rem;
    min-width: 160px;
}

.gtb-button-age-outline {
    background-color: transparent;
    color: var(--gtb-primary);
    border: 2px solid var(--gtb-primary);
}

.gtb-button-age-outline:hover {
    background-color: var(--gtb-primary);
    color: white;
}

.gtb-age-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 1024px) {
    .gtb-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gtb-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gtb-menu-toggle {
        display: block;
    }
    
    .gtb-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: var(--gtb-transition);
        z-index: 1000;
    }
    
    .gtb-nav.active {
        transform: translateY(0);
    }
    
    .gtb-nav-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        text-align: center;
    }
    
    .gtb-hero-heading {
        font-size: 2.5rem;
    }
    
    .gtb-game-container {
        flex-direction: column;
    }
    
    .gtb-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .gtb-contact-container {
        flex-direction: column;
    }
    
    .gtb-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gtb-hero-heading {
        font-size: 2rem;
    }
    
    .gtb-section-title {
        font-size: 2rem;
    }
    
    .gtb-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gtb-footer-container {
        grid-template-columns: 1fr;
    }
    
    .gtb-cookies-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gtb-age-buttons {
        flex-direction: column;
    }
    
    .gtb-button-age {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .gtb-logo-block {
        flex-direction: column;
        text-align: center;
    }
    
    .gtb-title {
        font-size: 1.5rem;
    }
    
    .gtb-hero-heading {
        font-size: 1.8rem;
    }

    .gtb-faq-answer p {
        font-size: .9rem;
    }

    .gtb-contact-info,
    .gtb-faq-item,
    .gtb-contact-form {
        padding: 0.5rem;
    }

    .gtb-footer-about,
    .gtb-footer-description,
    .gtb-input-newsletter {
        width: 95%;
        text-align: center;
    }

    .gtb-footer-description,
    .gtb-contact-text,
    .gtb-container {
        padding: 0.5rem;
        font-size: .9rem;
    }
}

.gtbpage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gtbpage-section {
    padding: 4rem 0 0 0;
}

.gtbpage-section-title {
    padding-top: 8rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.gtbpage-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    border-radius: 2px;
}

.gtbpage-privacy-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gtbpage-privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gtbpage-privacy-title {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.4rem;
    color: #005a82;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gtbpage-privacy-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #2e8b57;
}

.gtbpage-privacy-text {
    font-family: 'Fredoka One', sans-serif;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .gtbpage-section-title {
        font-size: 2rem;
    }
    
    .gtbpage-privacy-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gtbpage-section-title {
        font-size: 1.8rem;
    }
    
    .gtbpage-privacy-title {
        font-size: 1.2rem;
    }

    .gtbpage-privacy-text {
        font-size: .9rem;
    }
}

.gtbterms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gtbterms-section {
    padding: 4rem 0 0 0;
}

.gtbterms-section-title {
    padding-top: 8rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.gtbterms-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    border-radius: 2px;
}

.gtbterms-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gtbterms-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gtbterms-title {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.4rem;
    color: #005a82;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gtbterms-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #2e8b57;
}

.gtbterms-text {
    font-family: 'Fredoka One', sans-serif;
    color: #555;
    line-height: 1.7;
}

.gtbterms-list {
    margin: 1rem 0 1rem 2rem;
}

.gtbterms-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .gtbterms-section-title {
        font-size: 2rem;
    }
    
    .gtbterms-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gtbterms-section-title {
        font-size: 1.8rem;
    }
    
    .gtbterms-title {
        font-size: 1.2rem;
    }

    .gtbterms-text {
        font-size: .9rem;
    }
}

.gtbresp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gtbresp-section {
    padding: 4rem 0 0 0;
}

.gtbresp-section-title {
    padding-top: 8rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.gtbresp-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    border-radius: 2px;
}

.gtbresp-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gtbresp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gtbresp-title {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.4rem;
    color: #005a82;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gtbresp-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #2e8b57;
}

.gtbresp-text {
    font-family: 'Fredoka One', sans-serif;
    color: #555;
    line-height: 1.7;
}

.gtbresp-list {
    margin: 1rem 0 1rem 2rem;
}

.gtbresp-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.gtbresp-list li:before {
    content: '\f111';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2e8b57;
    font-size: 0.6rem;
    top: 0.5rem;
}

.gtbresp-warning {
    background-color: #fff8e6;
    border-left: 4px solid #ffd700;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .gtbresp-section-title {
        font-size: 2rem;
    }
    
    .gtbresp-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gtbresp-section-title {
        font-size: 1.8rem;
    }
    
    .gtbresp-title {
        font-size: 1.2rem;
    }

    .gtbresp-text {
        font-size: .9rem;
    }
}

.gtb-disclaimer-logos {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gtb-disclaimer-logos img {
    max-width: 200px;
    height: auto;
    background-color: #2e8b57;
    padding: 10px;
    border-radius: 3px;
}