*{
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    background-color: #C83E4D;
    font-size: 25px;
    color: #FFF;
    letter-spacing: 4px;
}
img {
    max-width: 100%;
}
h2 {
    margin-top: 0;
}
.hero {
    background: url("./images/banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}
section {
    background: linear-gradient(180deg, #1C0B0B 0%, #3A1A1A 50%, #5C2F2F 100%); /* Deep red to dark gradient */
}
.about{
    background: url("./images/banner2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}

section {
    padding: 60px 0;
}
.games {
    background: url("./images/banner3.webp");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}
.hero:before,
.about:before,
.games:before{
    content: "";
    background: rgba(0,0,0,0.4);
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}
.btn-primary {
    /* Core styling */
    color: #fff; /* White text */
    border-radius: 8px; /* Softer, modern rounded corners */
    font-weight: 600; /* Slightly bolder for emphasis */
    cursor: pointer;
    display: inline-flex; /* Flex for better alignment of text/icons */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    padding: 12px 24px; /* More generous padding for a bigger, clickable feel */
    outline: none;
    text-decoration: none;
    width: fit-content;
    background: linear-gradient(135deg, #F4B860 0%, #E88D39 100%); /* Gradient for depth */
    line-height: 1.5; /* Adjusted for better text alignment */
    border: none;
    box-shadow: 0 4px 15px rgba(244, 184, 96, 0.4); /* Subtle glow effect */
    position: relative;
    overflow: hidden; /* Contain inner animations */
    transition: all 0.3s ease; /* Smooth transitions for all animated properties */
}

/* Hover effect */
.btn-primary:hover {
    background: linear-gradient(135deg, #E88D39 0%, #F4B860 100%); /* Reverse gradient */
    box-shadow: 0 6px 20px rgba(244, 184, 96, 0.6); /* Bigger shadow */
    transform: translateY(-2px); /* Slight lift for a "pop" effect */
}

/* Click effect */
.btn-primary:active {
    transform: translateY(1px); /* Pressed-down feel */
    box-shadow: 0 2px 10px rgba(244, 184, 96, 0.3); /* Reduced shadow */
}

/* Inner shine animation */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Subtle white shine */
    transform: skewX(-20deg); /* Diagonal tilt for dynamic effect */
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 150%; /* Shine moves across on hover */
}

/* Optional: Icon animation (if you have an icon like <i>) */
.btn-primary i {
    margin-right: 8px; /* Space between icon and text */
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: scale(1.2) rotate(10deg); /* Icon grows and tilts */
}

.header-wrapper {
    display: grid;
    grid-template-columns: 150px 1fr;
}
/* Burger Menu Button Styling */
.header__toggle-btn {
    display: none; /* Hidden by default on large screens */
    cursor: pointer;
    padding: 10px;
    background: linear-gradient(135deg, #F4B860 0%, #E88D39 100%); /* Casino gold-to-orange gradient */
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(244, 184, 96, 0.4); /* Subtle glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
    z-index: 1000; /* Ensure it stays above other elements */
}

/* Burger lines */
.header__toggle-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff; /* White lines */
    margin: 5px 0;
    transition: all 0.3s ease; /* Smooth animation for lines */
    transform-origin: center;
}

/* Show burger on mobile (media query) */
@media (max-width: 768px) {
    .header__toggle-btn {
        display: block; /* Show on mobile */
    }
}

/* Hover effect */
.header__toggle-btn:hover {
    transform: scale(1.1); /* Slight scale up */
    box-shadow: 0 4px 15px rgba(244, 184, 96, 0.6); /* Enhanced glow */
}

/* Active/Clicked state (animation to 'X') */
.header__toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px); /* Top line to top of 'X' */
}

.header__toggle-btn.active span:nth-child(2) {
    opacity: 0; /* Middle line disappears */
}

.header__toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px); /* Bottom line to bottom of 'X' */
}

/* Ensure button fits mobile layout */
.header__toggle-btn:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(244, 184, 96, 0.5); /* Custom focus ring */
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Шапка сайта */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 4;
    padding: 12px 25px;
    background: transparent;
    width: 100%;
    color: #fff;
}
.header__left {
    display: flex;
    align-items: center;
}

.header__logo {
    max-width: 170px;
}

.header__logo a img {
    max-width: 100%;
    height: auto;
}

/* FAQ Section Styling */
.faq {
    padding: 60px 0;
    background: linear-gradient(180deg, #1C0B0B 0%, #3A1A1A 50%, #5C2F2F 100%); /* Matching the games section gradient */
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Subtle overlay for readability */
    z-index: 0;
}

.faq > * {
    position: relative;
    z-index: 1;
}

/* Wrapper */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #F4B860; /* Gold for casino vibe */
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-heading p {
    font-size: 16px;
    color: #D3D3D3; /* Light gray for contrast */
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.faq-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Checkbox (hidden, used for toggle) */
.faq-item input[type="checkbox"] {
    display: none;
}

/* Label Styling */
.faq-item label {
    display: block;
    padding: 15px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #0e103d;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-item label::after {
    content: '+'; /* Plus sign as default */
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked + label::after {
    content: '−'; /* Minus sign when open */
    transform: rotate(0deg); /* Optional: subtle rotation */
}

/* Answer Content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;

    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 200px; /* Adjust based on content height */
    padding: 5px 20px 10px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .faq {
        padding: 40px 0;
    }

    .section-heading p {
        font-size: 14px;
    }
}

.header__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header__nav {
    display: flex;
    gap: 20px;
}

.header__nav a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 30px;
}

/* Контент блога */
.content-blog {
    padding: 25px;
}

.content-blog h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-blog h3 a {
    color: #FFF;
    text-decoration: none;
}

.content-blog h3 a:hover {
    color: #541fff;
}

.content-blog p {
    font-size: 14px;
    color: #666;
}

/* Нижний колонтитул */
.footer {
    background: #32373B;
    color: #f8f9fa;
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.footer__info {
    margin-bottom: 30px;
}

.footer__certificates {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer__certificates img {
    height: 40px;
}

.footer__info p {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.5;
}

.footer__contact {
    color: #ffde59;
}

.footer__contact h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.footer__contact-details p {
    margin-bottom: 5px;
    margin-top: 5px;
}

.footer__contact-details span {
    font-weight: 600;
    color: #ffde59;
}

.footer__contact-details a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer__contact-details a:hover {
    color: #ffde59;
}

.footer__links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    list-style-type: none;
}

.footer__links a {
    color: #FFF;
    opacity: 0.8;
    font-size: 25px;
    text-decoration: none;
}

.features {
    padding: 60px 20px;
    text-align: center;
}

.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.features-desc h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f8b400;
}

.features-desc p {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

.features-desc span {
    font-weight: bold;
    color: #f8b400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.feature-item {
    background: #1e1e1e;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.blog {
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.blog-heading h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: #252525;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-blog {
    padding: 20px;
    text-align: left;
}

.content-blog h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.content-blog a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.content-blog a:hover {
    color: #ffcc00;
}

.content-blog p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}


.footer__links a:hover {
    opacity: 1;
    color: #ffde59;
}

.footer__copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

.footer__copy a {
    color: #ffde59;
    text-decoration: none;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    max-width: 150px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
}

.hero-text h1 {
    font-size: 60px;
    color: #F6F0ED;
}
.mobile-btn {
    padding: 0 20px 20px;
}

.mobile-btn .btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}



/* Оверлей для мобильного меню */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.overlay-bg.active {
    display: block;
}

/* Декоративные анимации */
.animate-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.anim-pulse {
    animation: pulseAnim 4s infinite;
}
.hero-text {
    max-width: 500px;
}

/* General section styling */
.games {
    padding: 60px 0; /* Spacious padding for breathing room */
}

/* Wrapper (assuming it’s already in your CSS) */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section heading */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 36px;
    color: #FFF; /* Dark blue for strong contrast */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-heading p {
    font-size: 16px;
    color: #FFF;
    max-width: 600px;
    margin: 0 auto;
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: 1fr; /* Responsive grid */
    gap: 30px; /* Space between cards */
    justify-content: center;
}

/* Game card */
.game-card {
    margin: 0 auto;
    max-width: 500px;
    background: #fff; /* White card background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden; /* Contain image and content */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px); /* Lift on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow */
}

/* Game thumbnail */
.game-thumb {
    position: relative;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Crop image neatly */
    display: block;
    transition: transform 0.3s ease; /* Zoom effect */
}

.game-card:hover .game-thumb img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Game info */
.game-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Ensures content fills card */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.game-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #0e103d;
    margin: 0 0 10px;
}

.game-info p {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .game-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }

    .game-thumb img {
        height: 180px; /* Slightly smaller for mobile */
    }
}

@media (max-width: 576px) {
    .games {
        padding: 40px 0;
    }

    .section-heading p {
        font-size: 14px;
    }

    .game-info {
        padding: 15px;
    }
}


@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.about-section {
    padding: 30px 10px;
}
/* Адаптивные стили */
@media (max-width: 991px) {
    .hero-content,
    .about-section,
    .features-section,
    .footer__content {
        flex-direction: column;
    }

    .hero-text,
    .about-desc,
    .features-desc {
        padding-right: 0;
        margin-bottom: 40px;
    }


    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__toggle-btn {
        display: block;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .blog-grid,
    .game-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .about-desc h2,
    .features-desc h2,
    .blog-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .float-card {
        display: none;
    }
}


/* Contact Section Styling */
.contact {
    padding: 60px 0;
    background: linear-gradient(180deg, #1C0B0B 0%, #3A1A1A 50%, #5C2F2F 100%); /* Matching gradient */
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Subtle overlay for readability */
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

/* Wrapper (already defined, but ensuring consistency) */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #F4B860; /* Gold color */
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-heading p {
    font-size: 16px;
    color: #D3D3D3; /* Light gray */
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #0e103d;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F4B860;
    box-shadow: 0 0 5px rgba(244, 184, 96, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
}

/* Error Message */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Submit Button */
.contact-form .btn-primary {
    display: block;
    width: 100%;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px;
    outline: none;
    text-decoration: none;
    background: linear-gradient(135deg, #F4B860 0%, #E88D39 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(244, 184, 96, 0.4);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #E88D39 0%, #F4B860 100%);
    box-shadow: 0 6px 20px rgba(244, 184, 96, 0.6);
    transform: translateY(-2px);
}

.contact-form .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(244, 184, 96, 0.3);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    background: #F4B860;
    color: #fff;
    border-radius: 8px;
    margin-top: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 0;
    }

    .section-heading p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 16px;
    }
}



/* Terms of Use and Privacy Policy Section Styling */
.terms,
.privacy {
    padding: 60px 0;
    background: linear-gradient(180deg, #1C0B0B 0%, #3A1A1A 50%, #5C2F2F 100%);
    position: relative;
    overflow: hidden;
}

.terms::before,
.privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.terms > *,
.privacy > * {
    position: relative;
    z-index: 1;
}

/* Section Heading (already defined, but reused here) */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #F4B860;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-heading p {
    font-size: 16px;
    color: #D3D3D3;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Content */
.terms-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.terms-content h3,
.privacy-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #0e103d;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-content p,
.privacy-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-content a,
.privacy-content a {
    color: #F4B860;
    text-decoration: none;
}

.terms-content a:hover,
.privacy-content a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .terms-content,
    .privacy-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .terms,
    .privacy {
        padding: 40px 0;
    }

    .section-heading p {
        font-size: 14px;
    }

    .terms-content h3,
    .privacy-content h3 {
        font-size: 20px;
    }
}