/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #EEEEEE;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #BF3131 0%, #7D0A0A 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #EEEEEE;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #EAD196;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #EAD196;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons-mobile-item {
    display: none;
}

.nav-buttons-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
}

.nav-buttons-mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #EAD196 0%, #BF3131 100%);
    color: #7D0A0A;
    box-shadow: 0 4px 15px rgba(234, 209, 150, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 209, 150, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #EEEEEE;
    border: 2px solid #EAD196;
}

.btn-secondary:hover {
    background: #EAD196;
    color: #7D0A0A;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #EEEEEE;
    border: 2px solid #EEEEEE;
}

.btn-login:hover {
    background: #EEEEEE;
    color: #7D0A0A;
}

.btn-register {
    background: #EAD196;
    color: #7D0A0A;
}

.btn-register:hover {
    background: #BF3131;
    color: #EEEEEE;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #EEEEEE;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #BF3131 0%, #7D0A0A 100%);
    padding: 120px 0 80px;
    color: #EEEEEE;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #EAD196;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Registration Steps Section */
.registration-steps {
    padding: 80px 0;
    background: #EEEEEE;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7D0A0A;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #BF3131 0%, #EAD196 100%);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #BF3131;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #BF3131 0%, #EAD196 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step h3 {
    color: #7D0A0A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: #EEEEEE;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #BF3131;
    box-shadow: 0 15px 30px rgba(191, 49, 49, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    color: #7D0A0A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #7D0A0A 0%, #BF3131 100%);
    color: #EEEEEE;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #EAD196;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #7D0A0A;
    color: #EEEEEE;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #EAD196;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #EAD196;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #BF3131;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #EAD196;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #BF3131;
    padding-top: 20px;
    text-align: center;
    color: #EEEEEE;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #7D0A0A;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Backdrop overlay for mobile menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
        backdrop-filter: blur(2px);
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-item {
        margin: 15px 0;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    .nav-buttons {
        display: none;
    }

    .nav-buttons-mobile-item {
        display: block;
        margin-top: 20px;
        padding: 0 20px;
    }

    .nav-buttons-mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding: 20px;
    }

    .nav-buttons-mobile-menu .btn {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-buttons-mobile-menu .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo img {
        height: 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        padding: 30px 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 100px;
    }

    .nav-buttons-mobile-menu {
        margin-top: 15px;
        padding: 15px;
        gap: 10px;
    }

    .nav-buttons-mobile-menu .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #EAD196;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .nav-link {
        text-decoration: underline;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #BF3131 0%, #7D0A0A 100%);
    padding: 120px 0 80px;
    color: #EEEEEE;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #EAD196;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background: #EEEEEE;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    color: #7D0A0A;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: #BF3131;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-wrapper p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-wrapper ul, .content-wrapper ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.policy-footer, .terms-footer, .disclaimer-footer {
    background: #EAD196;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.warning-box h2 {
    color: #856404;
    margin-top: 0;
}

.responsible-gaming {
    background: #d1ecf1;
    border: 2px solid #bee5eb;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.responsible-gaming h3 {
    color: #0c5460;
    margin-top: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #EEEEEE;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container, .contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2, .contact-info-container h2 {
    color: #7D0A0A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #7D0A0A;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BF3131;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: #7D0A0A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.contact-details a {
    color: #BF3131;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.support-categories {
    margin-top: 40px;
}

.support-categories h3 {
    color: #7D0A0A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.support-categories ul {
    list-style: none;
    padding: 0;
}

.support-categories li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.support-categories li:last-child {
    border-bottom: none;
}

.emergency-support {
    margin-top: 40px;
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    padding: 20px;
    border-radius: 15px;
}

.emergency-support h3 {
    color: #721c24;
    margin-top: 0;
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: #EEEEEE;
}

.faq-categories {
    text-align: center;
    margin-bottom: 60px;
}

.faq-categories h2 {
    color: #7D0A0A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #BF3131;
    color: #BF3131;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #BF3131;
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #7D0A0A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #BF3131;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer h4 {
    color: #BF3131;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.still-have-questions {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.still-have-questions h2 {
    color: #7D0A0A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* FAQ Preview Styles */
.faq-preview {
    padding: 80px 0;
    background: white;
}

.faq-preview h2 {
    text-align: center;
    color: #7D0A0A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-preview > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item-preview {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #BF3131;
}

.faq-item-preview h3 {
    color: #7D0A0A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-item-preview p {
    color: #666;
    line-height: 1.6;
}

.faq-link {
    text-align: center;
}

/* Office Hours Styles */
.office-hours {
    padding: 80px 0;
    background: #EEEEEE;
}

.office-hours h2 {
    text-align: center;
    color: #7D0A0A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.hours-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-item h3 {
    color: #7D0A0A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hours-item p {
    color: #666;
    margin-bottom: 10px;
}

/* 404 Error Page Styles */
.error-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #BF3131 0%, #7D0A0A 100%);
    color: #EEEEEE;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: #EAD196;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #EAD196;
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.helpful-links {
    margin-bottom: 40px;
}

.helpful-links h3 {
    color: #EAD196;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.helpful-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #EEEEEE;
    transition: all 0.3s ease;
}

.helpful-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.link-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.search-suggestion h3 {
    color: #EAD196;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.search-btn {
    padding: 15px 25px;
    background: #EAD196;
    color: #7D0A0A;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #BF3131;
    color: #EEEEEE;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 40px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 200px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 30px 15px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-buttons,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 