/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    min-width: 48px;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #d4af37;
    color: #000;
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #8b0000;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #660000;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: #fff;
    color: #8b0000;
    border: 2px solid #8b0000;
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 48px;
    min-width: 48px;
    margin-top: auto;
    margin-bottom: 1rem;
    z-index: 10;
    position: relative;
    visibility: visible;
    opacity: 1;
}

.btn-outline:hover {
    background-color: #8b0000;
    color: #fff;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: none;
    list-style: none;
    gap: 2rem;
}

/* Mobile menu styles */
@media (max-width: 833px) {
    .nav {
        position: relative;
    }
    
    .nav.active .nav-list {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        padding: 6rem 2rem 2rem;
        z-index: 9999;
        width: 100vw;
        height: 100vh;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
        animation: slideInFromTop 0.3s ease-out;
    }
    
    @keyframes slideInFromTop {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .nav.active .nav-list .nav-item {
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
        animation: fadeInUp 0.5s ease-out;
        animation-fill-mode: both;
    }
    
    .nav.active .nav-list .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav.active .nav-list .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav.active .nav-list .nav-item:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes fadeInUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .nav.active .nav-list .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .nav.active .nav-list .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 0;
        display: block;
        border-bottom: 2px solid #333;
        transition: all 0.3s ease;
    }
    
    .nav.active .nav-list .nav-link:hover {
        color: #d4af37;
        border-bottom-color: #d4af37;
    }
    
    .nav.active .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background-color: transparent;
        margin-top: 1rem;
        border-radius: 0;
        width: 100%;
    }
    
    .nav.active .dropdown-menu li {
        padding: 0;
        margin-bottom: 0.5rem;
    }
    
    .nav.active .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
        display: block;
        width: 100%;
        color: #ccc;
        transition: color 0.3s ease;
    }
    
    .nav.active .dropdown-menu a:hover {
        color: #d4af37;
    }
    
    /* Close button for mobile menu */
    .mobile-menu-close {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        z-index: 10000;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close:hover {
        color: #d4af37;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Show close button only when mobile menu is active */
    .nav.active + .mobile-menu-close,
    body.mobile-menu-open .mobile-menu-close {
        display: flex !important;
        animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}


.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #333;
}

.header-phone {
    display: none;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    margin-top: 80px;
    padding: 2rem 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-actions .btn,
.hero-buttons .btn {
    padding: 12px 24px !important;
    min-height: 48px !important;
    min-width: 160px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap !important;
    width: 160px !important;
    height: 48px !important;
}


/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.feature-icon img {
    width: 64px;
    height: 64px;
}

.feature-title {
    color: #8b0000;
    margin-bottom: 1rem;
}

/* Events Section */
.events {
    padding: 4rem 0;
}

.events-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.events-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-title {
    color: #8b0000;
    margin-bottom: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

/* Games Section */
.games {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.games-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.games-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.game-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-title {
    color: #8b0000;
    margin-bottom: 1rem;
}

.game-description {
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #d4af37;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.testimonial-author strong {
    color: #8b0000;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-title {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #ccc;
    font-size: 0.9rem;
}

.age-restriction {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}


/* Policy Pages */
.policy-page {
    padding: 6rem 0 4rem;
    background-color: #f8f9fa;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.policy-title {
    color: #8b0000;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.policy-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #8b0000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cookie-type {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.cookie-type h3 {
    color: #8b0000;
    margin-bottom: 0.75rem;
}

.browser-instructions {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #8b0000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
}

/* Error Pages */
.error-page {
    padding: 6rem 0 4rem;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.error-icon {
    margin-bottom: 2rem;
}

.error-icon-img {
    width: 120px;
    height: 120px;
    opacity: 0.7;
}

.error-title {
    color: #8b0000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-suggestions {
    text-align: left;
    margin-top: 2rem;
}

.error-suggestions h3 {
    color: #8b0000;
    margin-bottom: 1rem;
}

.suggestion-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.suggestion-links li {
    margin-bottom: 0.5rem;
}

.suggestion-links a {
    color: #8b0000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.suggestion-links a:hover {
    background-color: #e9ecef;
}

.error-contact {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.error-contact h3 {
    color: #8b0000;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #8b0000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #8b0000;
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    color: #8b0000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    color: #333;
}

.contact-item a {
    color: #8b0000;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
}

.btn-full {
    width: 100%;
}

/* FAQ Styles */
.faq {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: auto;
    background-color: transparent;
    display: none;
    z-index: 10000;
}

/* Mobile: Center the modal with vertical layout */
@media (max-width: 833px) {
    .cookie-modal {
        bottom: auto;
        right: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 320px;
        min-width: 320px;
    }
    
    .cookie-modal-content {
        flex-direction: column !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 320px !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
    }
    
    .cookie-modal-text-content {
        width: 100% !important;
        text-align: center !important;
        order: 1;
    }
    
    .cookie-modal-title {
        text-align: center !important;
        width: 100% !important;
    }
    
    .cookie-modal-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .cookie-modal-buttons {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px;
        order: 2;
    }
    
    .cookie-accept-btn,
    .cookie-cancel-btn {
        flex: 1 !important;
        max-width: 120px;
        width: auto !important;
    }
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.cookie-modal-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.cookie-modal-text {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 100px;
}

.cookie-accept-btn {
    background: #F27046;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cookie-accept-btn:hover {
    background: #e55a2b;
}

.cookie-cancel-btn {
    background: white;
    color: #000;
    border: 2px solid #F27046;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-cancel-btn:hover {
    background: #F27046;
    color: white;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background-color: #f8f9fa;
    margin-top: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
