:root {
    --gbo-sunset-orange: #FF6B35;
    --gbo-ocean-blue: #004E89;
    --gbo-forest-green: #2E8B57;
    --gbo-sand-beige: #F4E4C1;
    --gbo-sky-cyan: #87CEEB;
    --gbo-text-dark: #2C3E50;
    --gbo-text-light: #FFFFFF;
    --gbo-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --gbo-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gbo-border-radius: 12px;
    --gbo-transition: all 0.3s ease;
}

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
    color: var(--gbo-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.gbo_header {
    background: linear-gradient(135deg, var(--gbo-ocean-blue) 0%, var(--gbo-sky-cyan) 100%);
    color: var(--gbo-text-light);
    position: relative;
}

.gbo_header-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.gbo_header-disclaimer span {
    min-height: 1.25rem;
}

.gbo_header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gbo_header-nav {
    display: flex;
    gap: 2rem;
}

.gbo_header-link {
    color: var(--gbo-text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--gbo-transition);
}

.gbo_header-link:hover {
    transform: translateY(-2px);
}

.gbo_header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gbo_header-logo {
    width: 100%;
    max-width: 50px;
    height: 100%;
    max-height: 50px;
}

.gbo_header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.gbo_header-contact {
    background: var(--gbo-sunset-orange);
    color: var(--gbo-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--gbo-border-radius);
    cursor: pointer;
    transition: var(--gbo-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gbo_header-contact:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.gbo_header-menu {
    display: none;
    background: none;
    border: none;
    color: var(--gbo-text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .gbo_header-container {
        padding: 1rem;
    }
    
    .gbo_header-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .gbo_header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gbo_header-nav {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gbo_header-brand {
        order: 1;
    }
    
    .gbo_header-contact {
        order: 3;
    }
}

@media (max-width: 480px) {
    .gbo_header-container {
        padding: 0.5rem;
    }
    
    .gbo_header-nav {
        gap: 0.5rem;
    }
    
    .gbo_header-link {
        font-size: 0.875rem;
    }
    
    .gbo_header-contact {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 320px) {
    .gbo_header-container {
        padding: 0.3rem;
    }
    
    .gbo_header-nav {
        gap: 0.3rem;
    }
    
    .gbo_header-link {
        font-size: 0.8rem;
    }
}

.gbo_welcome {
    background: linear-gradient(135deg, var(--gbo-sand-beige) 0%, var(--gbo-sky-cyan) 50%, var(--gbo-forest-green) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.gbo_welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/gbo-engine/gbo-imgs/welcome-pattern.webp') center/cover;
    opacity: 0.1;
}

.gbo_welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gbo_welcome h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gbo-text-dark);
    min-height: 3.5rem;
}

.gbo_welcome p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gbo-text-dark);
    min-height: 1.5rem;
}

.gbo_welcome-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_welcome-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--gbo-border-radius);
    box-shadow: var(--gbo-shadow-soft);
    transition: var(--gbo-transition);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gbo_welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.gbo_welcome-card:hover::before {
    left: 100%;
}

.gbo_welcome-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--gbo-shadow-heavy);
}

.gbo_welcome-card i {
    font-size: 3rem;
    color: var(--gbo-ocean-blue);
    margin-bottom: 1rem;
}

.gbo_welcome-text {
    margin-bottom: 1.5rem;
}

.gbo_welcome-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    min-height: 1.8rem;
}

.gbo_welcome-text p {
    font-size: 0.9rem;
    color: var(--gbo-text-dark);
    margin: 0;
    min-height: 2.5rem;
}

.gbo_welcome-cta {
    background: var(--gbo-sunset-orange);
    color: var(--gbo-text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--gbo-transition);
    margin-top: auto;
}

.gbo_welcome-cta:hover {
    background: #E55A2B;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gbo_welcome {
        padding: 3rem 1.5rem;
    }
    
    .gbo_welcome h1 {
        font-size: 2.5rem;
    }
    
    .gbo_welcome-cards {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gbo_welcome {
        padding: 2rem 1rem;
    }
    
    .gbo_welcome h1 {
        font-size: 2rem;
    }
    
    .gbo_welcome p {
        font-size: 1.1rem;
    }
    
    .gbo_welcome-card {
        min-width: 150px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbo_welcome {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_welcome h1 {
        font-size: 1.8rem;
    }
    
    .gbo_welcome p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gbo_welcome-cards {
        gap: 0.8rem;
    }
    
    .gbo_welcome-card {
        padding: 1rem;
        min-width: 130px;
    }
    
    .gbo_welcome-card i {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .gbo_welcome {
        padding: 1rem 0.3rem;
    }
    
    .gbo_welcome h1 {
        font-size: 1.5rem;
    }
    
    .gbo_welcome-cards {
        gap: 0.5rem;
    }
    
    .gbo_welcome-card {
        padding: 0.8rem;
        min-width: 120px;
    }
}

.gbo_about {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--gbo-sand-beige) 0%, #FFFFFF 50%, var(--gbo-sky-cyan) 100%);
}

.gbo_about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbo_about-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.gbo_about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.gbo_about-visual {
    flex: 1;
    position: relative;
}

.gbo_about-visual img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 350px;
    border-radius: var(--gbo-border-radius);
    box-shadow: var(--gbo-shadow-soft);
    transition: var(--gbo-transition);
}

.gbo_about-visual img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: var(--gbo-shadow-heavy);
}

.gbo_about-content {
    flex: 1;
}

.gbo_about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gbo-ocean-blue);
    min-height: 3rem;
}

.gbo_about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gbo-forest-green);
    min-height: 2.5rem;
}

.gbo_about-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    min-height: 5rem;
}

.gbo_about-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gbo_about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gbo_about-feature i {
    font-size: 2rem;
    color: var(--gbo-sunset-orange);
    margin-bottom: 0.5rem;
}

.gbo_about-feature span {
    font-weight: 600;
    min-height: 1.5rem;
}

.gbo_about-stats {
    display: flex;
    gap: 2rem;
}

.gbo_about-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gbo_about-stat i {
    font-size: 1.5rem;
    color: var(--gbo-ocean-blue);
}

.gbo_about-stat span {
    font-weight: 600;
    min-height: 1.5rem;
}

.gbo_about-mission {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: var(--gbo-border-radius);
    box-shadow: var(--gbo-shadow-soft);
}

.gbo_about-mission h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--gbo-text-dark);
    min-height: 2.7rem;
}

.gbo_about-mission p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    min-height: 3rem;
}

.gbo_about-cta {
    background: var(--gbo-forest-green);
    color: var(--gbo-text-light);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--gbo-transition);
    display: inline-block;
}

.gbo_about-cta:hover {
    background: #267A47;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .gbo_about {
        padding: 3rem 1.5rem;
    }
    
    .gbo_about-block {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .gbo_about-content h2 {
        font-size: 2.2rem;
    }
    
    .gbo_about-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .gbo_about {
        padding: 2rem 1rem;
    }
    
    .gbo_about-block {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .gbo_about-content h2 {
        font-size: 2rem;
    }
    
    .gbo_about-content h3 {
        font-size: 1.6rem;
    }
    
    .gbo_about-features {
        gap: 1rem;
    }
    
    .gbo_about-mission {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .gbo_about {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_about-block {
        gap: 1.5rem;
    }
    
    .gbo_about-content h2 {
        font-size: 1.8rem;
    }
    
    .gbo_about-content h3 {
        font-size: 1.4rem;
    }
    
    .gbo_about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gbo_about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gbo_about-mission {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .gbo_about {
        padding: 1rem 0.3rem;
    }
    
    .gbo_about-content h2 {
        font-size: 1.6rem;
    }
    
    .gbo_about-content h3 {
        font-size: 1.3rem;
    }
    
    .gbo_about-mission {
        padding: 1rem;
    }
}

.gbo_features {
    background: linear-gradient(135deg, var(--gbo-ocean-blue) 0%, var(--gbo-forest-green) 100%);
    padding: 4rem 2rem;
    color: var(--gbo-text-light);
}

.gbo_features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gbo_features h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    min-height: 3.3rem;
}

.gbo_features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_features-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--gbo-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--gbo-transition);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.gbo_features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gbo-sunset-orange), var(--gbo-sky-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gbo_features-card:hover::before {
    transform: scaleX(1);
}

.gbo_features-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
}

.gbo_features-icon {
    margin-bottom: 1.5rem;
}

.gbo_features-icon i {
    font-size: 3.5rem;
    color: var(--gbo-sand-beige);
}

.gbo_features-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 2rem;
}

.gbo_features-text p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    min-height: 4rem;
}

@media (max-width: 1024px) {
    .gbo_features {
        padding: 3rem 1.5rem;
    }
    
    .gbo_features h2 {
        font-size: 2.4rem;
    }
    
    .gbo_features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gbo_features {
        padding: 2rem 1rem;
    }
    
    .gbo_features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gbo_features-card {
        padding: 2rem 1.5rem;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .gbo_features {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_features h2 {
        font-size: 1.8rem;
    }
    
    .gbo_features-grid {
        gap: 1rem;
    }
    
    .gbo_features-card {
        padding: 1.5rem 1rem;
        min-width: 160px;
    }
    
    .gbo_features-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .gbo_features {
        padding: 1rem 0.3rem;
    }
    
    .gbo_features h2 {
        font-size: 1.6rem;
    }
    
    .gbo_features-card {
        padding: 1rem 0.8rem;
        min-width: 140px;
    }
}

.gbo_games {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, #FFFFFF 0%, var(--gbo-sand-beige) 100%);
}

.gbo_games-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gbo_games h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--gbo-text-dark);
    min-height: 3.3rem;
}

.gbo_games p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gbo-text-dark);
    min-height: 1.5rem;
}

.gbo_games-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_games-card {
    background: var(--gbo-text-light);
    border-radius: var(--gbo-border-radius);
    box-shadow: var(--gbo-shadow-soft);
    overflow: hidden;
    transition: var(--gbo-transition);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
}

.gbo_games-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--gbo-shadow-heavy);
}

.gbo_games-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gbo-sunset-orange);
    color: var(--gbo-text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gbo_games-visual {
    position: relative;
    overflow: hidden;
}

.gbo_games-visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 200px;
    transition: var(--gbo-transition);
}

.gbo_games-card:hover .gbo_games-visual img {
    transform: scale(1.1);
}

.gbo_games-content {
    padding: 1.5rem;
}

.gbo_games-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gbo-text-dark);
    min-height: 2rem;
}

.gbo_games-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--gbo-ocean-blue);
}

.gbo_games-meta i {
    font-size: 1.2rem;
}

.gbo_games-link {
    background: var(--gbo-forest-green);
    color: var(--gbo-text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--gbo-transition);
    display: inline-block;
}

.gbo_games-link:hover {
    background: #267A47;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gbo_games {
        padding: 3rem 1.5rem;
    }
    
    .gbo_games h2 {
        font-size: 2.4rem;
    }
    
    .gbo_games-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gbo_games {
        padding: 2rem 1rem;
    }
    
    .gbo_games h2 {
        font-size: 2rem;
    }
    
    .gbo_games p {
        font-size: 1.1rem;
    }
    
    .gbo_games-card {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .gbo_games {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_games h2 {
        font-size: 1.8rem;
    }
    
    .gbo_games p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gbo_games-grid {
        gap: 1rem;
    }
    
    .gbo_games-card {
        min-width: 160px;
    }
    
    .gbo_games-content {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    .gbo_games {
        padding: 1rem 0.3rem;
    }
    
    .gbo_games h2 {
        font-size: 1.6rem;
    }
    
    .gbo_games-card {
        min-width: 140px;
    }
}

.gbo_free-slots {
    background: linear-gradient(135deg, var(--gbo-sunset-orange) 0%, var(--gbo-forest-green) 100%);
    padding: 4rem 2rem;
    color: var(--gbo-text-light);
}

.gbo_free-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gbo_free-slots h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    min-height: 3.3rem;
}

.gbo_free-slots p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    min-height: 1.5rem;
}

.gbo_free-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_free-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--gbo-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--gbo-transition);
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gbo_free-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    background: rgba(255, 255, 255, 0.15);
}

.gbo_free-card i {
    font-size: 3rem;
    color: var(--gbo-sand-beige);
    margin-bottom: 1.5rem;
}

.gbo_free-text {
    margin-bottom: 1.5rem;
}

.gbo_free-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    min-height: 1.8rem;
}

.gbo_free-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    min-height: 3rem;
}

.gbo_free-cta {
    background: var(--gbo-sand-beige);
    color: var(--gbo-text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--gbo-transition);
    margin-top: auto;
    font-weight: 600;
}

.gbo_free-cta:hover {
    background: #E8D8B8;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gbo_free-slots {
        padding: 3rem 1.5rem;
    }
    
    .gbo_free-slots h2 {
        font-size: 2.4rem;
    }
    
    .gbo_free-cards {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gbo_free-slots {
        padding: 2rem 1rem;
    }
    
    .gbo_free-slots h2 {
        font-size: 2rem;
    }
    
    .gbo_free-slots p {
        font-size: 1.1rem;
    }
    
    .gbo_free-card {
        padding: 1.5rem;
        min-width: 170px;
    }
}

@media (max-width: 480px) {
    .gbo_free-slots {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_free-slots h2 {
        font-size: 1.8rem;
    }
    
    .gbo_free-slots p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gbo_free-cards {
        gap: 0.8rem;
    }
    
    .gbo_free-card {
        padding: 1rem;
        min-width: 140px;
    }
    
    .gbo_free-card i {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .gbo_free-slots {
        padding: 1rem 0.3rem;
    }
    
    .gbo_free-slots h2 {
        font-size: 1.6rem;
    }
    
    .gbo_free-card {
        padding: 0.8rem;
        min-width: 120px;
    }
}

.gbo_faq {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, #FFFFFF 0%, var(--gbo-sky-cyan) 100%);
}

.gbo_faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbo_faq h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gbo-text-dark);
    min-height: 3.3rem;
}

.gbo_faq-blocks {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gbo_faq-block {
    flex: 1;
    background: var(--gbo-text-light);
    padding: 2rem;
    border-radius: var(--gbo-border-radius);
    box-shadow: var(--gbo-shadow-soft);
}

.gbo_faq-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gbo-ocean-blue);
    text-align: center;
    min-height: 2rem;
}

.gbo_faq-item {
    margin-bottom: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.gbo_faq-question {
    padding: 1rem;
    background: #F8F9FA;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--gbo-transition);
}

.gbo_faq-question:hover {
    background: #E9ECEF;
}

.gbo_faq-question span {
    font-weight: 600;
    min-height: 1.5rem;
}

.gbo_faq-question i {
    color: var(--gbo-sunset-orange);
    transition: var(--gbo-transition);
}

.gbo_faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gbo_faq-item.active .gbo_faq-answer {
    padding: 1rem;
    max-height: 200px;
}

.gbo_faq-item.active .gbo_faq-question i {
    transform: rotate(45deg);
}

.gbo_faq-answer p {
    margin: 0;
    min-height: 3rem;
}

.gbo_faq-contact {
    text-align: center;
}

.gbo_faq-cta {
    background: var(--gbo-sunset-orange);
    color: var(--gbo-text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--gbo-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gbo_faq-cta:hover {
    background: #E55A2B;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .gbo_faq {
        padding: 3rem 1.5rem;
    }
    
    .gbo_faq h2 {
        font-size: 2.4rem;
    }
    
    .gbo_faq-blocks {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gbo_faq {
        padding: 2rem 1rem;
    }
    
    .gbo_faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gbo_faq-blocks {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gbo_faq-block {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbo_faq {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_faq h2 {
        font-size: 1.8rem;
    }
    
    .gbo_faq-block {
        padding: 1rem;
    }
    
    .gbo_faq-question {
        padding: 0.8rem;
    }
    
    .gbo_faq-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .gbo_faq {
        padding: 1rem 0.3rem;
    }
    
    .gbo_faq h2 {
        font-size: 1.6rem;
    }
    
    .gbo_faq-block {
        padding: 0.8rem;
    }
}

.gbo_reviews {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gbo-forest-green) 0%, var(--gbo-ocean-blue) 100%);
    color: var(--gbo-text-light);
}

.gbo_reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbo_reviews h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    min-height: 3.3rem;
}

.gbo_reviews-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_reviews-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--gbo-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--gbo-transition);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

.gbo_reviews-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.gbo_reviews-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.gbo_reviews-avatar {
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--gbo-sand-beige);
}

.gbo_reviews-meta {
    flex: 1;
}

.gbo_reviews-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    min-height: 1.6rem;
}

.gbo_reviews-rating {
    color: var(--gbo-sand-beige);
}

.gbo_reviews-quote {
    font-size: 2rem;
    color: var(--gbo-sand-beige);
    opacity: 0.5;
}

.gbo_reviews-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 4rem;
}

.gbo_reviews-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gbo_reviews-location, .gbo_reviews-date {
    min-height: 1.2rem;
}

@media (max-width: 1024px) {
    .gbo_reviews {
        padding: 3rem 1.5rem;
    }
    
    .gbo_reviews h2 {
        font-size: 2.4rem;
    }
    
    .gbo_reviews-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gbo_reviews {
        padding: 2rem 1rem;
    }
    
    .gbo_reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gbo_reviews-card {
        padding: 1.5rem;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .gbo_reviews {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_reviews h2 {
        font-size: 1.8rem;
    }
    
    .gbo_reviews-grid {
        gap: 1rem;
    }
    
    .gbo_reviews-card {
        padding: 1rem;
        min-width: 200px;
    }
    
    .gbo_reviews-avatar {
        max-width: 50px;
        max-height: 50px;
    }
}

@media (max-width: 320px) {
    .gbo_reviews {
        padding: 1rem 0.3rem;
    }
    
    .gbo_reviews h2 {
        font-size: 1.6rem;
    }
    
    .gbo_reviews-card {
        padding: 0.8rem;
        min-width: 170px;
    }
}

.gbo_responsible {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--gbo-sand-beige) 0%, #FFFFFF 50%, var(--gbo-sky-cyan) 100%);
}

.gbo_responsible-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbo_responsible-content {
    margin-bottom: 3rem;
}

.gbo_responsible h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gbo-text-dark);
    text-align: center;
    min-height: 3rem;
}

.gbo_responsible-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    min-height: 4rem;
}

.gbo_responsible-content a {
    color: var(--gbo-ocean-blue);
    text-decoration: none;
    transition: var(--gbo-transition);
}

.gbo_responsible-content a:hover {
    color: var(--gbo-sunset-orange);
    text-decoration: underline;
}

.gbo_responsible-link {
    display: inline-block;
    background: var(--gbo-forest-green);
    color: var(--gbo-text-light);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--gbo-transition);
    margin-top: 1rem;
}

.gbo_responsible-link:hover {
    background: #267A47;
    transform: translateY(-3px);
}

.gbo_responsible-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gbo_responsible-partners a {
    display: inline-block;
    transition: var(--gbo-transition);
}

.gbo_responsible-partners a:hover {
    transform: scale(1.1);
}

.gbo_responsible-partners img {
    width: 120px;
    height: 60px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .gbo_responsible {
        padding: 3rem 1.5rem;
    }
    
    .gbo_responsible h2 {
        font-size: 2.2rem;
    }
    
    .gbo_responsible-partners {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gbo_responsible {
        padding: 2rem 1rem;
    }
    
    .gbo_responsible h2 {
        font-size: 2rem;
    }
    
    .gbo_responsible-content p {
        font-size: 1rem;
    }
    
    .gbo_responsible-partners {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gbo_responsible {
        padding: 1.5rem 0.5rem;
    }
    
    .gbo_responsible h2 {
        font-size: 1.8rem;
    }
    
    .gbo_responsible-partners {
        gap: 0.8rem;
    }
}

@media (max-width: 320px) {
    .gbo_responsible {
        padding: 1rem 0.3rem;
    }
    
    .gbo_responsible h2 {
        font-size: 1.6rem;
    }
    
    .gbo_responsible-partners {
        gap: 0.5rem;
    }
}

.gbo_footer {
    background: linear-gradient(135deg, var(--gbo-ocean-blue) 0%, var(--gbo-text-dark) 100%);
    color: var(--gbo-text-light);
    padding: 3rem 2rem 1rem;
}

.gbo_footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbo_footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gbo_footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gbo_footer-logo {
    width: 100%;
    max-width: 50px;
    height: 100%;
    max-height: 50px;
}

.gbo_footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.gbo_footer-links {
    display: flex;
    gap: 3rem;
}

.gbo_footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.gbo_footer-link {
    color: var(--gbo-text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--gbo-transition);
}

.gbo_footer-link:hover {
    color: var(--gbo-sand-beige);
    transform: translateX(5px);
}

.gbo_footer-contact {
    background: var(--gbo-sunset-orange);
    color: var(--gbo-text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--gbo-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.gbo_footer-contact:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.gbo_footer-bottom {
    text-align: center;
}

.gbo_footer-bottom span {
    opacity: 0.8;
    min-height: 1.2rem;
}

@media (max-width: 1024px) {
    .gbo_footer {
        padding: 2rem 1.5rem 1rem;
    }
    
    .gbo_footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gbo_footer {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .gbo_footer-main {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .gbo_footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbo_footer {
        padding: 1rem 0.5rem 0.3rem;
    }
    
    .gbo_footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gbo_footer-column {
        align-items: center;
    }
}

@media (max-width: 320px) {
    .gbo_footer {
        padding: 0.8rem 0.3rem 0.2rem;
    }
    
    .gbo_footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.gbo_cookie-consent-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.gbo_cookie-consent-wrapper.active {
    transform: translateY(0);
}

.gbo_cookie-consent-panel {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.gbo_cookie-consent-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.gbo_cookie-consent-main-icon {
    font-size: 2.2rem;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gbo_cookie-consent-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.gbo_cookie-consent-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.gbo_cookie-consent-action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.gbo_cookie-consent-accept-btn {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gbo_cookie-consent-accept-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gbo_cookie-consent-learn-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gbo_cookie-consent-learn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .gbo_cookie-consent-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .gbo_cookie-consent-header-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gbo_cookie-consent-title-text {
        font-size: 1.3rem;
    }
    
    .gbo_cookie-consent-description {
        font-size: 0.9rem;
    }
    
    .gbo_cookie-consent-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .gbo_cookie-consent-accept-btn,
    .gbo_cookie-consent-learn-link {
        width: 100%;
        text-align: center;
    }
}

.gbo_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.gbo_age-verification-overlay.active {
    display: flex;
}

.gbo_age-verification-dialog {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gbo_age-verification-icon-container {
    margin-bottom: 1.5rem;
}

.gbo_age-verification-primary-icon {
    font-size: 4rem;
    color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 2s infinite;
}

.gbo_age-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-size: 1.2rem;
    z-index: 10;
}

.gbo_age-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    color: #e74c3c;
}

.gbo_age-verification-dialog {
    position: relative;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.gbo_age-verification-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gbo_age-verification-message {
    color: #5d6d7e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gbo_age-verification-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gbo_age-confirm-action {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.gbo_age-confirm-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.gbo_age-deny-action {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gbo_age-deny-action:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .gbo_age-verification-dialog {
        padding: 2rem 1rem;
        margin: 0.5rem;
    }
    
    .gbo_age-verification-heading {
        font-size: 1.8rem;
    }
    
    .gbo_age-verification-message {
        font-size: 1rem;
    }
    
    .gbo_age-verification-controls {
        flex-direction: column;
    }
    
    .gbo_age-confirm-action,
    .gbo_age-deny-action {
        width: 100%;
    }
}

.gbo_subscription-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    padding: 1rem;
}

.gbo_subscription-popup-container.active {
    display: flex;
}

.gbo_subscription-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 10;
}

.gbo_subscription-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    color: #ff6b6b;
}

.gbo_subscription-content-box {
    position: relative;
}

.gbo_subscription-content-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gbo_subscription-header-area {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gbo_subscription-header-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.gbo_subscription-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.gbo_subscription-intro-text {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.gbo_subscription-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gbo_subscription-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.gbo_subscription-feature-item:hover {
    transform: translateY(-3px);
}

.gbo_subscription-feature-icon {
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.gbo_subscription-feature-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.gbo_subscription-form-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gbo_subscription-input-group {
    display: flex;
    flex-direction: column;
}

.gbo_subscription-email-field {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gbo_subscription-email-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.gbo_subscription-email-field:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.gbo_subscription-field-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.gbo_subscription-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.gbo_subscription-checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
}

.gbo_subscription-checkbox-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.gbo_subscription-checkbox-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    display: none;
}

.gbo_subscription-submit-button {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.gbo_subscription-submit-button:disabled {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
}

.gbo_subscription-submit-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gbo_subscription-success-panel,
.gbo_unsubscribe-confirmation-panel {
    display: none;
    text-align: center;
}

.gbo_subscription-success-message,
.gbo_unsubscribe-success-text {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.gbo_subscription-success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gbo_subscription-home-link {
    background: #ffffff;
    color: #667eea;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gbo_subscription-home-link:hover {
    transform: translateY(-2px);
}

.gbo_subscription-unsubscribe-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gbo_subscription-unsubscribe-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.gbo_unsubscribe-close-btn {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gbo_unsubscribe-close-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .gbo_subscription-popup-container {
        padding: 0.5rem;
    }
    
    .gbo_subscription-content-box {
        padding: 1.5rem 1rem;
    }
    
    .gbo_subscription-main-title {
        font-size: 1.6rem;
    }
    
    .gbo_subscription-intro-text {
        font-size: 0.9rem;
    }
    
    .gbo_subscription-feature-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gbo_subscription-feature-item {
        padding: 0.8rem;
    }
    
    .gbo_subscription-success-actions {
        flex-direction: column;
    }
    
    .gbo_subscription-home-link,
    .gbo_subscription-unsubscribe-btn,
    .gbo_unsubscribe-close-btn {
        width: 100%;
        text-align: center;
    }
}

.gbo_contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    padding: 1rem;
}

.gbo_contact-form-overlay.active {
    display: flex;
}

.gbo_contact-form-main {
    background: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gbo_contact-form-left-panel {
    flex: 1;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 0 0 20px;
    color: white;
}

.gbo_contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gbo_contact-form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gbo_contact-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(25, 25, 25, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 10;
}

.gbo_contact-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    color: #ff6b6b;
}

.gbo_contact-form-main {
    position: relative;
}

.gbo_contact-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.gbo_contact-input-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gbo_contact-field-wrapper {
    display: flex;
    flex-direction: column;
}

.gbo_contact-name-input,
.gbo_contact-email-input,
.gbo_contact-message-textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gbo_contact-message-textarea {
    resize: vertical;
    min-height: 120px;
}

.gbo_contact-name-input::placeholder,
.gbo_contact-email-input::placeholder,
.gbo_contact-message-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.gbo_contact-name-input:focus,
.gbo_contact-email-input:focus,
.gbo_contact-message-textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.gbo_contact-field-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.gbo_contact-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.gbo_contact-checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.2rem;
}

.gbo_contact-checkbox-wrapper label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.gbo_contact-checkbox-wrapper a {
    color: #ffffff;
    text-decoration: underline;
}

.gbo_contact-checkbox-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    display: none;
}

.gbo_contact-submit-btn {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.gbo_contact-submit-btn:disabled {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
}

.gbo_contact-submit-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gbo_contact-info-right-panel {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
}

.gbo_contact-info-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.gbo_contact-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gbo_contact-feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gbo_contact-feature-card:hover {
    transform: translateX(5px);
}

.gbo_contact-feature-icon {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 0.8rem;
    display: block;
}

.gbo_contact-feature-title {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.gbo_contact-feature-desc {
    color: #5d6d7e;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .gbo_contact-form-main {
        flex-direction: column;
    }
    
    .gbo_contact-form-left-panel {
        border-radius: 20px 20px 0 0;
    }
    
    .gbo_contact-info-right-panel {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .gbo_contact-form-overlay {
        padding: 0.5rem;
    }
    
    .gbo_contact-form-main {
        margin: 0.5rem;
    }
    
    .gbo_contact-form-left-panel,
    .gbo_contact-info-right-panel {
        padding: 1.5rem 1rem;
    }
    
    .gbo_contact-form-title {
        font-size: 1.6rem;
    }
    
    .gbo_contact-info-heading {
        font-size: 1.4rem;
    }
    
    .gbo_contact-feature-card {
        padding: 1rem;
    }
}

.gbo_success-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10003;
    padding: 1rem;
}

.gbo_success-notification-overlay.active {
    display: flex;
}

.gbo_success-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 10;
}

.gbo_success-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    color: #ff6b6b;
}

.gbo_success-notification-card {
    position: relative;
}

.gbo_success-notification-card {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gbo_success-notification-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gbo_success-notification-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gbo_success-notification-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.gbo_success-close-button {
    background: #ffffff;
    color: #27ae60;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gbo_success-close-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .gbo_success-notification-overlay {
        padding: 0.5rem;
    }
    
    .gbo_success-notification-card {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
    
    .gbo_success-notification-title {
        font-size: 1.6rem;
    }
    
    .gbo_success-notification-text {
        font-size: 1rem;
    }
    
    .gbo_success-close-button {
        width: 100%;
    }

    .gbo_age-close-btn,
    .gbo_subscription-close-btn,
    .gbo_contact-close-btn,
    .gbo_success-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 0.8rem;
        right: 0.8rem;
    }
}

@media (max-width: 320px) {
    .gbo_age-close-btn,
    .gbo_subscription-close-btn,
    .gbo_contact-close-btn,
    .gbo_success-close-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 0.6rem;
        right: 0.6rem;
    }
}

@keyframes closeBtnAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-90deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.gbo_age-close-btn,
.gbo_subscription-close-btn,
.gbo_contact-close-btn,
.gbo_success-close-btn {
    animation: closeBtnAppear 0.3s ease-out;
}

.gbo_age-close-btn:focus,
.gbo_subscription-close-btn:focus,
.gbo_contact-close-btn:focus,
.gbo_success-close-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.gbo_age-close-btn:hover,
.gbo_subscription-close-btn:hover,
.gbo_contact-close-btn:hover,
.gbo_success-close-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gbo_age-close-btn:active,
.gbo_subscription-close-btn:active,
.gbo_contact-close-btn:active,
.gbo_success-close-btn:active {
    transform: scale(0.95) rotate(90deg);
    transition: transform 0.1s ease;
}

.gbopages_privacy-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gbopages_privacy-hero {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
}

.gbopages_privacy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbopages_privacy-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.gbopages_privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    min-height: 1.5rem;
}

.gbopages_privacy-content {
    padding: 4rem 2rem;
}

.gbopages_privacy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gbopages_privacy-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gbopages_privacy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.gbopages_privacy-item:hover::before {
    width: 8px;
}

.gbopages_privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gbopages_privacy-icon {
    flex-shrink: 0;
}

.gbopages_privacy-icon i {
    font-size: 3rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.gbopages_privacy-item:hover .gbopages_privacy-icon i {
    transform: scale(1.1) rotate(5deg);
}

.gbopages_privacy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
    min-height: 2.2rem;
}

.gbopages_privacy-text p {
    line-height: 1.7;
    color: #4a5568;
    min-height: 6rem;
}

.gbopages_privacy-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gbopages_privacy-text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .gbopages_privacy-hero {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_privacy-content {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_privacy-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gbopages_privacy-hero {
        padding: 2rem 1rem;
    }
    
    .gbopages_privacy-content {
        padding: 2rem 1rem;
    }
    
    .gbopages_privacy-hero h1 {
        font-size: 2rem;
    }
    
    .gbopages_privacy-hero p {
        font-size: 1.1rem;
    }
    
    .gbopages_privacy-item {
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbopages_privacy-hero {
        padding: 1.5rem 0.5rem;
    }
    
    .gbopages_privacy-content {
        padding: 1.5rem 0.3rem;
    }
    
    .gbopages_privacy-hero h1 {
        font-size: 1.8rem;
    }
    
    .gbopages_privacy-hero p {
        font-size: 1rem;
    }
    
    .gbopages_privacy-item {
        padding: 1.5rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gbopages_privacy-text h2 {
        font-size: 1.1rem;
    }
    
    .gbopages_privacy-text p {
        font-size: 0.9rem;
    }
    
    .gbopages_privacy-text a {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .gbopages_privacy-hero {
        padding: 1rem 0.3rem;
    }
    
    .gbopages_privacy-content {
        padding: 1rem 0.2rem;
    }
    
    .gbopages_privacy-hero h1 {
        font-size: 1.6rem;
    }
    
    .gbopages_privacy-item {
        padding: 1rem 0.5rem;
    }
    
    .gbopages_privacy-icon i {
        font-size: 2.5rem;
    }
}

.gbopages_terms-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gbopages_terms-hero {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
}

.gbopages_terms-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gbopages_terms-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.gbopages_terms-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    min-height: 1.5rem;
}

.gbopages_terms-content {
    padding: 4rem 2rem;
}

.gbopages_terms-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gbopages_terms-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gbopages_terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gbopages_terms-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    transition: background 0.3s ease;
}

.gbopages_terms-header:hover {
    background: linear-gradient(135deg, #f5576c, #f093fb);
}

.gbopages_terms-header i:first-child {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gbopages_terms-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
    min-height: 1.8rem;
}

.gbopages_terms-header i:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gbopages_terms-section.active .gbopages_terms-header i:last-child {
    transform: rotate(180deg);
}

.gbopages_terms-section.active .gbopages_terms-header i:first-child {
    transform: scale(1.1);
}

.gbopages_terms-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.gbopages_terms-section.active .gbopages_terms-body {
    padding: 2rem;
    max-height: 300px;
}

.gbopages_terms-body p {
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    min-height: 5rem;
}

@media (max-width: 1024px) {
    .gbopages_terms-hero {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_terms-content {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_terms-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gbopages_terms-hero {
        padding: 2rem 1rem;
    }
    
    .gbopages_terms-content {
        padding: 2rem 1rem;
    }
    
    .gbopages_terms-hero h1 {
        font-size: 2rem;
    }
    
    .gbopages_terms-hero p {
        font-size: 1.1rem;
    }
    
    .gbopages_terms-header {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .gbopages_terms-section.active .gbopages_terms-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbopages_terms-hero {
        padding: 1.5rem 0.5rem;
    }
    
    .gbopages_terms-content {
        padding: 1.5rem 0.3rem;
    }
    
    .gbopages_terms-hero h1 {
        font-size: 1.8rem;
    }
    
    .gbopages_terms-hero p {
        font-size: 1rem;
    }
    
    .gbopages_terms-header {
        padding: 1.2rem 0.8rem;
        gap: 0.8rem;
    }
    
    .gbopages_terms-header h2 {
        font-size: 1.1rem;
    }
    
    .gbopages_terms-header i:first-child {
        font-size: 1.5rem;
    }
    
    .gbopages_terms-section.active .gbopages_terms-body {
        padding: 1.2rem 0.8rem;
    }
    
    .gbopages_terms-body p {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .gbopages_terms-hero {
        padding: 1rem 0.3rem;
    }
    
    .gbopages_terms-content {
        padding: 1rem 0.2rem;
    }
    
    .gbopages_terms-hero h1 {
        font-size: 1.6rem;
    }
    
    .gbopages_terms-header {
        padding: 1rem 0.5rem;
    }
    
    .gbopages_terms-header h2 {
        font-size: 1rem;
    }
}

.gbopages_cookies-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gbopages_cookies-hero {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
}

.gbopages_cookies-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gbopages_cookies-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.gbopages_cookies-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    min-height: 1.5rem;
}

.gbopages_cookies-content {
    padding: 4rem 2rem;
}

.gbopages_cookies-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.gbopages_cookies-steps::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    z-index: 1;
}

.gbopages_cookies-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.gbopages_cookies-number {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #4facfe;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gbopages_cookies-step:hover .gbopages_cookies-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gbopages_cookies-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gbopages_cookies-step:hover .gbopages_cookies-info {
    transform: translateX(10px);
}

.gbopages_cookies-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gbopages_cookies-step:hover .gbopages_cookies-info::before {
    transform: scaleX(1);
}

.gbopages_cookies-info i {
    font-size: 2.5rem;
    color: #4facfe;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.gbopages_cookies-step:hover .gbopages_cookies-info i {
    transform: rotate(15deg) scale(1.1);
}

.gbopages_cookies-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    min-height: 1.8rem;
}

.gbopages_cookies-info p {
    line-height: 1.7;
    color: #4a5568;
    min-height: 6rem;
}

@media (max-width: 1024px) {
    .gbopages_cookies-hero {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_cookies-content {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_cookies-hero h1 {
        font-size: 2.5rem;
    }
    
    .gbopages_cookies-steps::before {
        left: 50px;
    }
    
    .gbopages_cookies-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gbopages_cookies-hero {
        padding: 2rem 1rem;
    }
    
    .gbopages_cookies-content {
        padding: 2rem 1rem;
    }
    
    .gbopages_cookies-hero h1 {
        font-size: 2rem;
    }
    
    .gbopages_cookies-hero p {
        font-size: 1.1rem;
    }
    
    .gbopages_cookies-steps::before {
        left: 40px;
    }
    
    .gbopages_cookies-step {
        gap: 1.5rem;
    }
    
    .gbopages_cookies-number {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .gbopages_cookies-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gbopages_cookies-hero {
        padding: 1.5rem 0.5rem;
    }
    
    .gbopages_cookies-content {
        padding: 1.5rem 0.3rem;
    }
    
    .gbopages_cookies-hero h1 {
        font-size: 1.8rem;
    }
    
    .gbopages_cookies-hero p {
        font-size: 1rem;
    }
    
    .gbopages_cookies-steps::before {
        display: none;
    }
    
    .gbopages_cookies-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gbopages_cookies-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .gbopages_cookies-info {
        padding: 1.2rem 0.8rem;
    }
    
    .gbopages_cookies-info h2 {
        font-size: 1.1rem;
    }
    
    .gbopages_cookies-info p {
        font-size: 0.9rem;
    }
    
    .gbopages_cookies-info i {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .gbopages_cookies-hero {
        padding: 1rem 0.3rem;
    }
    
    .gbopages_cookies-content {
        padding: 1rem 0.2rem;
    }
    
    .gbopages_cookies-hero h1 {
        font-size: 1.6rem;
    }
    
    .gbopages_cookies-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .gbopages_cookies-info {
        padding: 1rem 0.5rem;
    }
}

.gbopages_responsible-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gbopages_responsible-hero {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
}

.gbopages_responsible-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gbopages_responsible-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.gbopages_responsible-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    min-height: 1.5rem;
}

.gbopages_responsible-content {
    padding: 4rem 2rem;
}

.gbopages_responsible-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gbopages_responsible-feature {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gbopages_responsible-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.gbopages_responsible-feature:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.gbopages_responsible-feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gbopages_responsible-visual {
    margin-bottom: 1.5rem;
}

.gbopages_responsible-visual i {
    font-size: 4rem;
    color: #43e97b;
    transition: transform 0.3s ease;
}

.gbopages_responsible-feature:hover .gbopages_responsible-visual i {
    transform: scale(1.2) rotate(10deg);
}

.gbopages_responsible-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    min-height: 1.8rem;
}

.gbopages_responsible-text p {
    line-height: 1.7;
    color: #4a5568;
    min-height: 6rem;
}

@media (max-width: 1024px) {
    .gbopages_responsible-hero {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_responsible-content {
        padding: 3rem 1.5rem;
    }
    
    .gbopages_responsible-hero h1 {
        font-size: 2.5rem;
    }
    
    .gbopages_responsible-features {
        gap: 1.5rem;
    }
    
    .gbopages_responsible-feature {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .gbopages_responsible-hero {
        padding: 2rem 1rem;
    }
    
    .gbopages_responsible-content {
        padding: 2rem 1rem;
    }
    
    .gbopages_responsible-hero h1 {
        font-size: 2rem;
    }
    
    .gbopages_responsible-hero p {
        font-size: 1.1rem;
    }
    
    .gbopages_responsible-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gbopages_responsible-feature {
        padding: 1.8rem;
    }
    
    .gbopages_responsible-visual i {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .gbopages_responsible-hero {
        padding: 1.5rem 0.5rem;
    }
    
    .gbopages_responsible-content {
        padding: 1.5rem 0.3rem;
    }
    
    .gbopages_responsible-hero h1 {
        font-size: 1.8rem;
    }
    
    .gbopages_responsible-hero p {
        font-size: 1rem;
    }
    
    .gbopages_responsible-feature {
        padding: 1.5rem 0.8rem;
    }
    
    .gbopages_responsible-text h2 {
        font-size: 1.1rem;
    }
    
    .gbopages_responsible-text p {
        font-size: 0.9rem;
    }
    
    .gbopages_responsible-visual i {
        font-size: 3rem;
    }
}

@media (max-width: 320px) {
    .gbopages_responsible-hero {
        padding: 1rem 0.3rem;
    }
    
    .gbopages_responsible-content {
        padding: 1rem 0.2rem;
    }
    
    .gbopages_responsible-hero h1 {
        font-size: 1.6rem;
    }
    
    .gbopages_responsible-feature {
        padding: 1.2rem 0.5rem;
    }
    
    .gbopages_responsible-visual i {
        font-size: 2.5rem;
    }
}

.gbopages_404-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gbopages_404-content {
    padding: 2rem;
    text-align: center;
    color: white;
}

.gbopages_404-container {
    max-width: 600px;
    margin: 0 auto;
}

.gbopages_404-animation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.gbopages_404-animation i {
    font-size: 4rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.gbopages_404-animation i:nth-child(1) {
    animation-delay: 0s;
    color: #ff6b6b;
}

.gbopages_404-animation i:nth-child(2) {
    animation-delay: 1s;
    color: #4ecdc4;
}

.gbopages_404-animation i:nth-child(3) {
    animation-delay: 2s;
    color: #45b7d1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.gbopages_404-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 4.5rem;
}

.gbopages_404-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    min-height: 4rem;
}

.gbopages_404-image {
    margin: 2rem 0;
}

.gbopages_404-image img {
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gbopages_404-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.gbopages_404-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gbopages_404-home:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gbopages_404-home i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gbopages_404-home:hover i {
    transform: translateX(-3px);
}

@media (max-width: 1024px) {
    .gbopages_404-content {
        padding: 1.5rem;
    }
    
    .gbopages_404-content h1 {
        font-size: 3.5rem;
    }
    
    .gbopages_404-content p {
        font-size: 1.2rem;
    }
    
    .gbopages_404-animation i {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .gbopages_404-content {
        padding: 1rem;
    }
    
    .gbopages_404-content h1 {
        font-size: 3rem;
    }
    
    .gbopages_404-content p {
        font-size: 1.1rem;
    }
    
    .gbopages_404-animation {
        gap: 1.5rem;
    }
    
    .gbopages_404-animation i {
        font-size: 3rem;
    }
    
    .gbopages_404-home {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gbopages_404-content {
        padding: 0.8rem 0.3rem;
    }
    
    .gbopages_404-content h1 {
        font-size: 2.5rem;
    }
    
    .gbopages_404-content p {
        font-size: 1rem;
    }
    
    .gbopages_404-animation {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .gbopages_404-animation i {
        font-size: 2.5rem;
    }
    
    .gbopages_404-image {
        margin: 1.5rem 0;
    }
    
    .gbopages_404-home {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gbopages_404-home i {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .gbopages_404-content {
        padding: 0.5rem 0.2rem;
    }
    
    .gbopages_404-content h1 {
        font-size: 2rem;
    }
    
    .gbopages_404-content p {
        font-size: 0.9rem;
    }
    
    .gbopages_404-animation {
        gap: 0.8rem;
    }
    
    .gbopages_404-animation i {
        font-size: 2rem;
    }
    
    .gbopages_404-home {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}