/* General Styles */
:root {
    --primary-color: #1a1e2c;
    --secondary-color: #e74c3c;
    --accent-color: #ffd700;
    --text-color: #ffffff;
    --light-bg: #141821;
    --card-bg: #1f2637;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Top Header Styles */
.top-header {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.disclaimer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.disclaimer-text i {
    color: var(--secondary-color);
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand h2 {
    color: var(--primary-color);
    margin: 0;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-restriction {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.responsible-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3142 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsible-text {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        display: none;
    }

    .hero-image {
        display: none;
    }

    .top-header {
        text-align: center;
    }
    
    .disclaimer-text {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .responsible-gaming {
        justify-content: center;
    }
}

/* Casino Listings Section */
.listings-section {
    background-color: var(--light-bg);
    padding: 50px 0;
}

.casino-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Logo Column */
.casino-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.1);
}

.trusted-badge i {
    font-size: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bonus Column */
.bonus-card {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    padding: 25px;
    border-radius: 15px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bonus-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.bonus-amount {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.bonus-extra {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.bonus-terms {
    font-size: 0.8rem;
    opacity: 0.7;
    position: relative;
    padding-top: 10px;
}

.bonus-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Pros Column */
.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

.pros-list i {
    color: #2ecc71;
    font-size: 1.1rem;
}

/* Rating Column */
.rating-circle {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1f2637 0%, #141821 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.rating-stars {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* CTA Column */
.play-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.review-link {
    display: none;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .casino-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .casino-item > .row > [class*="col-"] {
        margin-bottom: 20px;
        text-align: center;
    }

    .casino-logo {
        max-width: 120px;
        margin: 0 auto 10px;
    }

    .bonus-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .pros-list li {
        justify-content: center;
    }

    .rating-circle {
        margin-bottom: 20px;
    }

    .play-btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Disclaimer Row */
.disclaimer-row {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer-row i {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 3px;
}

.disclaimer-row p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.disclaimer-row a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.disclaimer-row a:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .disclaimer-row {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

    .disclaimer-row i {
        margin: 0 auto;
    }

    .disclaimer-row p {
        font-size: 0.85rem;
    }
}

/* Information Section */
.info-section {
    background: var(--primary-color);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.info-header h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
    opacity: 0.9;
}

.info-card-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767.98px) {
    .info-header h2 {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 20px;
    }

    .info-card-header {
        gap: 10px;
    }

    .info-card-header i {
        font-size: 1.5rem;
    }

    .info-card-header h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--primary-color);
}

.faq-header h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--card-bg);
    color: var(--accent-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffd700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--card-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 25px 0;
}

.payment-category h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-category .faq-list li {
    padding-left: 20px;
}

.payment-note {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.payment-note i {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-top: 3px;
}

@media (max-width: 767.98px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-category {
        text-align: center;
    }

    .payment-category .faq-list li {
        justify-content: center;
        padding-left: 0;
    }

    .payment-note {
        flex-direction: column;
        text-align: center;
    }

    .payment-note i {
        margin: 0 auto 10px;
    }
}

/* Footer Section */
.footer-section {
    background: var(--primary-color);
    padding: 60px 0 30px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-info-box {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.footer-info-box:hover {
    transform: translateY(-5px);
}

.footer-info-box .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-info-box .icon-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-info-box h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-info-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Important Notice */
.important-notice {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0 30px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-header i {
    font-size: 2rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.notice-header h3 {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.important-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
}

.helpline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.helpline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.helpline-item i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.helpline-item span {
    color: rgba(255, 255, 255, 0.7);
}

.helpline-item a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.helpline-item a:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .important-notice {
        padding: 20px;
        margin: 30px 0 20px;
    }

    .notice-header {
        gap: 10px;
    }

    .notice-header i {
        font-size: 1.5rem;
    }

    .notice-header h3 {
        font-size: 1.2rem;
    }

    .important-notice p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .helpline-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .helpline-item {
        justify-content: flex-start;
    }
}

/* Copyright Bar */
.copyright-bar {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .copyright-bar {
        margin-top: 20px;
        padding-top: 15px;
    }
}

/* Legal Disclaimers */
.legal-disclaimers {
    margin: 50px 0 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reproduction-notice {
    margin-bottom: 25px;
}

.reproduction-notice p,
.disclaimer-notice p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-notice h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .legal-disclaimers {
        padding: 20px;
        margin: 30px 0 20px;
    }

    .reproduction-notice {
        margin-bottom: 20px;
    }

    .reproduction-notice p,
    .disclaimer-notice p {
        font-size: 0.75rem;
    }
}

/* Footer Badges */
.footer-badges {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.badge-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.badge-item a {
    display: block;
    text-decoration: none;
}

.footer-badge {
    max-width: 100%;
    height: auto;
    width: 120px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1199.98px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .footer-badge {
        width: 100px;
    }
}

@media (max-width: 767.98px) {
    .footer-badges {
        padding: 20px;
        margin: 30px 0;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        row-gap: 20px;
    }
    
    .footer-badge {
        width: 90px;
    }
}

/* Footer Pages */
.footer-pages {
    margin: 40px 0;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

@media (max-width: 767.98px) {
    .footer-pages {
        margin: 30px 0;
        padding: 15px 0;
    }

    .footer-nav ul {
        gap: 20px;
        flex-direction: column;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }
}

/* Content Pages */
.content-section {
    background: var(--primary-color);
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-wrapper h1 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-block h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.content-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-block ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.content-block ul li {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.content-block ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 25px;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .content-block {
        margin-bottom: 30px;
    }
}

/* Contact Page Styles */
.contact-info {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.emergency-contacts {
    margin-top: 20px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.emergency-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.emergency-item p {
    margin: 0;
}

.emergency-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.emergency-item a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-label {
    color: var(--text-color);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: none;
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    color: var(--secondary-color);
}

.contact-form .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .contact-item {
        text-align: center;
    }

    .emergency-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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