/* UKJackpotHub - Unique Gambling Aggregator Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --primary-purple: #4B0082;
    --secondary-purple: #6A0DAD;
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --accent-red: #DC143C;
    --accent-green: #228B22;
    --text-light: #F5F5F5;
    --text-dark: #333333;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, var(--primary-black), var(--secondary-black));
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.keywords {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.keyword-tag {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Casino Offers Section */
.offers-section {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-red));
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-card h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.offer-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.offer-btn:hover::before {
    left: 100%;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsible Gaming Section */
.responsible-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: var(--text-light);
    padding: 4rem 0;
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.age-restriction {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.age-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.responsible-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.responsible-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.regulators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.regulator-link {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
}

.regulator-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.regulator-link img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-red);
}

.age-modal-content {
    text-align: center;
}

.age-modal-content h2 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.age-modal-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-confirm-btn {
    background: linear-gradient(45deg, var(--accent-green), #32CD32);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.age-confirm-btn:hover {
    transform: scale(1.05);
}

.age-decline-btn {
    background: linear-gradient(45deg, var(--accent-red), #FF6B6B);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-decline-btn:hover {
    transform: scale(1.05);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-black);
    color: var(--text-light);
    padding: 1rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--secondary-gold);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Table of Contents */
.toc {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.toc h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--secondary-purple);
}

/* Content Sections */
.content-section {
    background: white;
    padding: 4rem 0;
    min-height: 60vh;
}

.content-section h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.content-section h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Additional styles for specific page components */

/* Active navigation link */
.nav-menu a.active {
    color: var(--primary-gold);
}

/* Policy Information */
.policy-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
}

.policy-info p {
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Content Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section ul li {
    margin-bottom: 0.5rem;
}

.sidebar-section a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-section a:hover {
    color: var(--secondary-purple);
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Contact Information */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: var(--primary-black);
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Browser Instructions */
.browser-instructions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.browser-instructions p {
    margin: 0 0 1rem 0;
    font-family: monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Cookie Categories */
.cookie-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-category h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.cookie-category p {
    margin: 0.5rem 0;
}

/* Responsible Gambling Styles */
.age-warning {
    background: linear-gradient(135deg, var(--accent-red), #FF6B6B);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.warning-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.warning-content .age-icon {
    font-size: 3rem;
}

.warning-content h2 {
    margin: 0;
    font-size: 2rem;
}

.warning-content p {
    margin: 0;
    font-size: 1.1rem;
}

.gambling-warning {
    margin: 2rem 0;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.warning-box p {
    margin: 0.5rem 0;
}

.warning-box p:first-child {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Assessment Tool */
.assessment-tool {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
    margin: 2rem 0;
}

.assessment-tool h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.assessment-tool ul {
    margin: 1rem 0;
}

.assessment-tool li {
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Help Organizations */
.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.org-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
}

.org-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.org-card p {
    margin: 0.5rem 0;
}

.org-card a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.org-card a:hover {
    color: var(--secondary-purple);
}

/* Help Section */
.help-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.help-section h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.help-section p {
    margin: 0.5rem 0;
}

/* Emergency Contacts */
.emergency {
    background: linear-gradient(135deg, var(--accent-red), #FF6B6B);
    color: white;
    border-radius: 10px;
}

.emergency h3 {
    color: white;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.emergency-contact h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    margin: 0.25rem 0;
}

/* Help Button */
.help-button {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin: 1rem 0;
}

.help-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Age Reminder */
.age-reminder {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border-radius: 10px;
}

.age-reminder h3 {
    color: white;
}

/* Help Links */
.help-link {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.help-link:hover {
    background: var(--secondary-gold);
    transform: scale(1.05);
}

/* Important Notice */
.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notice h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.important-notice p {
    margin: 0.5rem 0;
}

.important-notice a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.important-notice a:hover {
    color: var(--secondary-purple);
}

/* Disclaimer */
.disclaimer {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.disclaimer p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-black);
}

.disclaimer small {
    color: #666;
    font-size: 0.8rem;
}

/* Offer Card Disclaimer */
.offer-card .disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 0.5rem;
    margin-top: 1rem;
    border-radius: 4px;
}

.offer-card .disclaimer small {
    color: #856404;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 1.5rem;
    }
    
    .keywords {
        gap: 0.5rem;
    }
    
    .keyword-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .org-card {
        padding: 1.5rem;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 600px;
    }
    
    .age-warning {
        padding: 1.5rem;
    }
    
    .warning-content .age-icon {
        font-size: 2.5rem;
    }
    
    .warning-content h2 {
        font-size: 1.5rem;
    }
    
    .assessment-tool {
        padding: 1.5rem;
    }
    
    .help-section {
        padding: 1rem;
    }
    
    .emergency-contact {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .offers-section {
        padding: 2rem 0;
    }
    
    .responsible-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .regulators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-info {
        padding: 0.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
    
    .warning-box {
        padding: 1rem;
    }
    
    .important-notice {
        padding: 1rem;
    }
    
    .disclaimer {
        padding: 0.75rem;
    }
    
    .age-warning {
        padding: 1rem;
    }
    
    .warning-content .age-icon {
        font-size: 2rem;
    }
    
    .warning-content h2 {
        font-size: 1.3rem;
    }
    
    .org-card {
        padding: 1rem;
    }
} 