/* Root Variables */
:root {
    --primary-color: #F2A900;
    --secondary-color: #5C3D3D;
    --text-light: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-dark: #333333;
    --background-dark: #2C1810;
    --background-footer: #3D2A1A;
    --border-color: #666666;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-content {
    background: rgba(92, 61, 61, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
}

/* Footer Styles */
.footer {
    background: var(--background-footer);
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.disclaimer {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.age-restriction {
    background: var(--primary-color);
    color: var(--background-dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

/* Hero Section */
.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E69400 100%);
    color: var(--background-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.3);
    border: 2px solid #B8860B;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 169, 0, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
}

.stats-content {
    background: linear-gradient(135deg, #27AE60 0%, #1A1A1A 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight {
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Games Section */
.games-section {
    padding: 40px 0;
}

.games-section .container {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 40px;
}

.games-title {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #2C5530 0%, #8B0000 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-icon {
    position: absolute;
    bottom: -15px;
    left: 20px;
    z-index: 2;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--background-dark);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-card-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.game-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.game-button {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    padding: 8px 16px;
    border: 1px solid var(--text-light);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.game-button:hover {
    background: var(--text-light);
    color: var(--background-dark);
}

/* Team Section */
.team-section {
    padding: 40px 0;
}

.team-section .container {
    background: linear-gradient(135deg, #2C5530 0%, #8B0000 100%);
    border-radius: var(--border-radius);
    padding: 40px;
}

.team-title {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-role {
    color: var(--text-gray);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-section .container {
    background: #27AE60;
    border-radius: var(--border-radius);
    padding: 40px;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.faq-container {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Page Hero Section */
.page-hero {
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
}

.page-hero .container {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1A1A1A 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
}


.page-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content-section {
    padding: 40px 0;
}

.about-content-section .container {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 40px;
}

.content-block {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '●';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0;
}

.contact-form-section .container {
    background: var(--background-footer);
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E69400 100%);
    color: var(--background-dark);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 169, 0, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.success-message {
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid #27AE60;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.success-message h3 {
    color: #27AE60;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Policy Content Section */
.policy-content-section {
    padding: 40px 0;
}

.policy-content-section .container {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 40px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.policy-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.policy-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.policy-list li::before {
    content: '●';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Game Page Styles */
.game-page-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1A1A1A 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.game-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.game-page-hero .container {
    position: relative;
    z-index: 2;
}

h1.game-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.game-container {
    background: var(--background-dark);
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.game-frame {
    background: #1a1a2e;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.game-frame iframe {
    display: block;
    border: none;
    background: #1a1a2e;
}

/* Game frame responsive */
@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }

    .game-container {
        padding: 20px 0;
    }

    .game-frame {
        margin: 0 15px;
    }

    .game-frame iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
    }

    .game-frame iframe {
        height: 400px;
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
}

.about-section .container {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 20px;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }



    .footer-nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Stats Section Mobile */
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Games Section Mobile */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .games-title {
        font-size: 2rem;
    }

    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-title {
        font-size: 2rem;
    }

    /* FAQ Section Mobile */
    .faq-title {
        font-size: 2rem;
    }

    .faq-container {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 0;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }

    .about-title {
        font-size: 2rem;
    }

    /* Page Hero Mobile */
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    /* About Content Mobile */
    .content-title {
        font-size: 1.5rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 1rem;
    }

    /* Contact Form Mobile */
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-description {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .success-message {
        padding: 20px;
        margin: 20px 15px 0;
    }

    .success-message h3 {
        font-size: 1.3rem;
    }

    .success-message p {
        font-size: 0.9rem;
    }

    /* Policy Content Mobile */
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-intro {
        font-size: 1.1rem;
    }

    .policy-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .policy-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 18px;
    }

    .footer-text,
    .disclaimer {
        font-size: 14px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }
}