:root {
    --gradient-primary: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 25%, #fbc2eb 50%, #a6c1ee 75%);
    --accent-color: #e63946;
    --text-accent: #1d3557;
    --text-light: #f1faee;
    --text-dark: #1d3557;
    --shadow-regular: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition-base: all 0.3s ease;
}

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

body {
    font-family: 'Sahitya', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Jacques Francois Shadow', serif;
    color: var(--text-accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fbx-header_container {
    background-color: var(--text-light);
    box-shadow: var(--shadow-regular);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
}

.fbx-header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1490px;
    margin: 0 auto;
}

.fbx-header_logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    
    a {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    img {
        height: 50px;
        width: auto;
    }
    
    h1 {
        font-size: 1.8rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.fbx-header_navigation {
    display: flex;
    align-items: center;
}

.fbx-header_navlist {
    display: flex;
    list-style: none;
    gap: 2rem;
    
    li a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        
        &:hover {
            background-color: var(--accent-color);
            color: var(--text-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        i {
            font-size: 1.2rem;
        }
    }
}

.fbx-header_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    
    span {
        width: 30px;
        height: 3px;
        background-color: var(--text-accent);
        transition: var(--transition-base);
    }
}

.fbx-premiumrestaurant_section {
    min-height: 100vh;
    background: url('../fbx-images/fbx-background-image-1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
}

.fbx-premiumrestaurant_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.fbx-premiumrestaurant_content {
    position: relative;
    z-index: 2;
    max-width: 1490px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    
    h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        color: var(--text-light);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .fbx-premiumrestaurant_text {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        
        i {
            margin: 0 0.5rem;
            color: var(--accent-color);
        }
    }
}

.fbx-premiumrestaurant_cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.fbx-premiumrestaurant_card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 1rem;
    width: 200px;
    transition: var(--transition-base);
    
    &:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }
    
    i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--accent-color);
    }
    
    p {
        color: var(--text-dark);
        font-weight: 700;
    }
}

.fbx-about_section {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.fbx-about_wrapper {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fbx-about_imagebox {
    width: 100%;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-regular);
    
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.fbx-about_contentbox {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-regular);
    
    h2 {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }
    
    p {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
}

.fbx-about_top {
    align-self: flex-start;
}

.fbx-about_bottom {
    align-self: flex-end;
}

.fbx-welcome_section {
    min-height: 70vh;
    background: url('../fbx-images/fbx-background-image-2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fbx-welcome_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.7);
    z-index: 1;
}

.fbx-welcome_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: var(--text-light);
    
    h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: var(--text-light);
    }
    
    p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        
        i {
            color: var(--accent-color);
            margin-right: 0.5rem;
        }
    }
}

.fbx-welcome_icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    
    i {
        font-size: 2.5rem;
        color: var(--accent-color);
        transition: var(--transition-base);
        
        &:hover {
            transform: scale(1.2) rotate(15deg);
        }
    }
}

.fbx-benefits_section {
    padding: 5rem 2rem;
    background-color: var(--text-light);
    
    h2 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 3rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.fbx-benefits_container {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.fbx-benefits_card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: calc(25% - 2rem);
    box-shadow: var(--shadow-regular);
    transition: var(--transition-base);
    text-align: center;
    
    &:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }
    
    i {
        font-size: 3rem;
        color: var(--accent-color);
        margin-bottom: 1.5rem;
    }
    
    h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    p {
        color: var(--text-dark);
    }
}

.fbx-superiority_section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.fbx-superiority_wrapper {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    
    img {
        width: 50%;
        border-radius: 1rem;
        box-shadow: var(--shadow-regular);
    }
}

.fbx-superiority_content {
    width: 50%;
    
    h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

.fbx-reviews_section {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    animation: gradientShift 10s infinite alternate;
    
    h2 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 3rem;
        color: var(--text-light);
    }
}

.fbx-reviews_container {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fbx-reviews_card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: calc(50% - 1.5rem);
    box-shadow: var(--shadow-regular);
    position: relative;
    transition: var(--transition-base);
    
    &:hover {
        transform: scale(1.03);
    }
    
    img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1rem;
        border: 3px solid var(--accent-color);
    }
    
    i {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--accent-color);
        opacity: 0.3;
    }
    
    h3 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    p {
        font-style: italic;
        text-align: center;
    }
}

.fbx-reviews_button {
    display: block;
    max-width: 300px;
    margin: 3rem auto 0;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: var(--transition-base);
    
    &:hover {
        background-color: darken(var(--accent-color), 10%);
        box-shadow: var(--shadow-hover);
    }
}

.fbx-faq_section {
    min-height: 70vh;
    background: url('../fbx-images/fbx-background-image-3.jpg') center/cover no-repeat;
    position: relative;
    padding: 5rem 2rem;
}

.fbx-faq_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(241, 250, 238, 0.9);
    z-index: 1;
}

.fbx-faq_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    
    h2 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 3rem;
        color: var(--text-accent);
    }
}

.fbx-faq_accordion {
    margin-bottom: 3rem;
}

.fbx-faq_item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-regular);
}

.fbx-faq_question {
    background-color: var(--accent-color);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    h3 {
        color: white;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    i:last-child {
        transition: var(--transition-base);
    }
}

.fbx-faq_answer {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    
    p {
        padding: 0 1.5rem 1.5rem;
    }
}

.fbx-faq_item.active .fbx-faq_question i:last-child {
    transform: rotate(45deg);
}

.fbx-faq_item.active .fbx-faq_answer {
    max-height: 500px;
}

.fbx-faq_button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: var(--text-accent);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: var(--transition-base);
    
    &:hover {
        background-color: lighten(var(--text-accent), 10%);
        box-shadow: var(--shadow-hover);
    }
}

.fbx-contact_section {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-dark);
}

.fbx-contact_wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-regular);
}

.fbx-contact_wrapper h2 {
    text-align: center;
    margin-bottom: 15px;
}

.fbx-contact_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.fbx-contact_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    
    i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    a {
        color: var(--text-dark);
        transition: var(--transition-base);
    }

    a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }
}

.fbx-contact_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fbx-contact_group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fbx-contact_group input,
.fbx-contact_form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.fbx-contact_submit {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-base);
}

.fbx-contact_submit:hover {
    background-color: #d62828;
}

.fbx-contact_thanks-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 53, 87, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fbx-contact_thanks-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
}

.fbx-contact_thanks-content button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}


.fbx-footer_container {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.fbx-footer_links {
    max-width: 1490px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    
    a {
        padding: 0.5rem 1rem;
        transition: var(--transition-base);
        
        &:hover {
            color: var(--accent-color);
        }
    }
}

.fbx-footer_copyright {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    img {
        height: 50px;
        width: auto;
    }
    
    p {
        text-align: center;
    }
}

.fbx-cookies_notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    
    &.show {
        transform: translateY(0);
    }
}

.fbx-cookies_content {
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    
    p {
        flex: 1;
        min-width: 300px;
        
        a {
            color: var(--accent-color);
            text-decoration: underline;
        }
    }
}

.fbx-cookies_accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    
    &:hover {
        background-color: darken(var(--accent-color), 10%);
    }
}

@media (max-width: 1024px) {
    .fbx-premiumrestaurant_content h2 {
        font-size: 3rem;
    }
    
    .fbx-benefits_card {
        width: calc(50% - 1rem);
    }
    
    .fbx-superiority_wrapper {
        flex-direction: column;
        
        img, .fbx-superiority_content {
            width: 100%;
        }
    }
    
    .fbx-reviews_card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .fbx-header_navlist {
        display: none;
        
        &.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--text-light);
            padding: 1rem;
            box-shadow: var(--shadow-regular);
        }
    }
    
    .fbx-header_burger {
        display: flex;
        
        &.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        &.active span:nth-child(2) {
            opacity: 0;
        }
        
        &.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
    }
    
    .fbx-header_wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fbx-header_logo {
        order: 2;
    }
    
    .fbx-header_navigation {
        order: 1;
        width: 100%;
        justify-content: flex-end;
    }
    
    .fbx-premiumrestaurant_content h2 {
        font-size: 2.5rem;
    }
    
    .fbx-premiumrestaurant_text {
        font-size: 1.2rem;
    }
    
    .fbx-about_imagebox, .fbx-about_contentbox {
        height: auto;
    }
}

@media (max-width: 480px) {
    .fbx-premiumrestaurant_content h2 {
        padding-top: 50px;
        font-size: 2rem;
    }
    
    .fbx-premiumrestaurant_card {
        width: 100%;
    }
    
    .fbx-benefits_card {
        width: 100%;
    }
    
    .fbx-faq_question {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .fbx-footer_links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .fbx-premiumrestaurant_content h2 {
        font-size: 1.8rem;
    }
    
    .fbx-header_logo h1 {
        font-size: 1.5rem;
    }
    
    .fbx-about_contentbox {
        padding: 2rem 1rem;
    }
}

.fbxpage-reviews_section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.fbxpage-reviews_header {
    max-width: 1490px;
    margin: 0 auto 3rem;
    text-align: center;
    
    h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 25%, #fbc2eb 50%, #a6c1ee 75%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: gradientShift 10s infinite alternate;
    }
    
    p {
        font-size: 1.3rem;
        color: var(--text-dark);
        
        i {
            color: var(--accent-color);
            margin: 0 0.5rem;
        }
    }
}

.fbxpage-reviews_container {
    max-width: 1490px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.fbxpage-reviews_card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-regular);
    position: relative;
    transition: var(--transition-base);
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    
    img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1rem;
        border: 3px solid var(--accent-color);
    }
    
    i.la-quote-left {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--accent-color);
        opacity: 0.3;
    }
    
    h3 {
        text-align: center;
        margin-bottom: 0.5rem;
        color: var(--text-accent);
    }
}

.fbxpage-reviews_rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    
    i {
        color: #ffc107;
        font-size: 1.2rem;
    }
}

.fbxpage-reviews_date {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 1024px) {
    .fbxpage-reviews_container {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .fbxpage-reviews_header h2 {
        font-size: 2.3rem;
    }
    
    .fbxpage-reviews_container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fbxpage-reviews_header h2 {
        padding-top: 50px;
        font-size: 2rem;
    }
    
    .fbxpage-reviews_header p {
        font-size: 1.1rem;
    }
    
    .fbxpage-reviews_card {
        padding: 1.5rem;
    }
}

.fbxpage-faq_section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    min-height: 100vh;
}

.fbxpage-faq_header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    
    h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--text-accent);
        position: relative;
        
        &::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            margin: 1rem auto 0;
            border-radius: 2px;
        }
    }
    
    p {
        font-size: 1.3rem;
        color: var(--text-dark);
        
        i {
            color: var(--accent-color);
            margin: 0 0.5rem;
        }
    }
}

.fbxpage-faq_container {
    max-width: 800px;
    margin: 0 auto;
}

.fbxpage-faq_item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-regular);
    background-color: white;
    transition: var(--transition-base);
    
    &:hover {
        box-shadow: var(--shadow-hover);
    }
}

.fbxpage-faq_question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    
    h3 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.2rem;
        color: var(--text-accent);
    }
    
    i:first-child {
        color: var(--accent-color);
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    i:last-child {
        transition: var(--transition-base);
        color: var(--text-accent);
    }
}

.fbxpage-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #f9f9f9;
    
    p {
        padding: 0 1.5rem 1.5rem;
        color: var(--text-dark);
    }
}

.fbxpage-faq_item.active {
    .fbxpage-faq_question i:last-child {
        transform: rotate(45deg);
    }
    
    .fbxpage-faq_answer {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .fbxpage-faq_header h2 {
        font-size: 2.3rem;
    }
    
    .fbxpage-faq_question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fbxpage-faq_header h2 {
        padding-top: 47px;
        font-size: 2rem;
    }
    
    .fbxpage-faq_header p {
        font-size: 1.1rem;
    }

    .fbx-reviews_section h2 {
        font-size: 2rem;
    }
    
    .fbxpage-faq_question {
        padding: 1rem;
        
        h3 {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }
}

.fbxpage-cookiepolicy_section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.fbxpage-cookiepolicy_header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    
    h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--text-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        
        i {
            color: var(--accent-color);
        }
    }
    
    p {
        color: var(--text-dark);
        font-size: 1.1rem;
    }
}

.fbxpage-cookiepolicy_container {
    max-width: 800px;
    margin: 0 auto;
}

.fbxpage-cookiepolicy_item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-regular);
    transition: var(--transition-base);
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
}

.fbxpage-cookiepolicy_icon {
    i {
        font-size: 2.5rem;
        color: var(--accent-color);
    }
}

.fbxpage-cookiepolicy_content {
    flex: 1;
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-accent);
    }
    
    p {
        color: var(--text-dark);
        line-height: 1.7;
        
        a {
            color: var(--accent-color);
            font-weight: 700;
        }
    }
}

.fbxpage-cookiepolicy_footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--text-dark);
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .fbxpage-cookiepolicy_header h2 {
        font-size: 2.3rem;
    }
    
    .fbxpage-cookiepolicy_item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .fbxpage-cookiepolicy_icon {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fbxpage-cookiepolicy_header h2 {
        padding-top: 70px;
        font-size: 2rem;
    }
    
    .fbxpage-cookiepolicy_content h3 {
        font-size: 1.3rem;
    }
}

.fbxpage-privacypolicy_section {
    padding: 5rem 2rem;
    background-color: #f5f7fa;
    min-height: 100vh;
}

.fbxpage-privacypolicy_header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    
    h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--text-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        
        i {
            color: var(--accent-color);
        }
    }
    
    p {
        color: var(--text-dark);
        font-size: 1.1rem;
    }
}

.fbxpage-privacypolicy_container {
    max-width: 800px;
    margin: 0 auto;
}

.fbxpage-privacypolicy_item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-regular);
    transition: var(--transition-base);
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
}

.fbxpage-privacypolicy_icon {
    i {
        font-size: 2.5rem;
        color: var(--accent-color);
    }
}

.fbxpage-privacypolicy_content {
    flex: 1;
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-accent);
    }
    
    p {
        color: var(--text-dark);
        line-height: 1.7;
        
        a {
            color: var(--accent-color);
            font-weight: 700;
        }
    }
}

.fbxpage-privacypolicy_footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--text-dark);
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .fbxpage-privacypolicy_header h2 {
        font-size: 2.3rem;
    }
    
    .fbxpage-privacypolicy_item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .fbxpage-privacypolicy_icon {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fbxpage-privacypolicy_header h2 {
        padding-top: 70px;
        font-size: 2rem;
    }
    
    .fbxpage-privacypolicy_content h3 {
        font-size: 1.3rem;
    }
}