/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff5252, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-offer {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
}

.btn-offer:hover {
    background: linear-gradient(45deg, #00a085, #00b7b3);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 184, 148, 0.4);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    color: #2d3436;
    margin-bottom: 0.2rem;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b6b;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3436;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23fd7f6f"/><stop offset="1" stop-color="%237eb0d3"/></radialGradient></defs><rect fill="url(%23a)" width="100%" height="100%"/><g fill="%23ffffff" fill-opacity="0.1"><circle cx="200" cy="200" r="40"/><circle cx="600" cy="300" r="30"/><circle cx="800" cy="600" r="25"/><circle cx="300" cy="700" r="35"/></g></svg>');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Casino Offers Section */
.casino-offers {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border: 3px solid #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #333;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(45deg);
    z-index: 10;
}

.offer-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.offer-header h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: #636e72;
}

.offer-content {
    padding: 0 2rem;
}

.bonus {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.bonus-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.bonus-text {
    font-size: 1rem;
    opacity: 0.9;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #2d3436;
}

.features li:last-child {
    border-bottom: none;
}

.offer-footer {
    padding: 1.5rem 2rem 2rem;
}

.terms {
    font-size: 0.85rem;
    color: #636e72;
    text-align: center;
    margin-top: 1rem;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
}

.responsible-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.age-badge {
    background: #ff6b6b;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.responsible-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.responsible-text p {
    opacity: 0.9;
    line-height: 1.7;
}

.help-links {
    margin-top: 1rem;
}

.help-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.help-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 1rem;
    opacity: 0.5;
}

.regulatory-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.regulatory-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.regulatory-logo:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: white;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2rem;
    text-align: center;
}

.age-icon {
    background: white;
    color: #ff6b6b;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-buttons .btn {
    flex: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #2d3436;
    padding: 1rem 1.5rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    color: #2d3436;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.cookie-banner .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 500;
    min-width: 80px;
    transition: all 0.2s ease;
}

.cookie-banner .btn-primary {
    background: #00b894;
    color: white;
    border-color: #00b894;
}

.cookie-banner .btn-primary:hover {
    background: #00a085;
    border-color: #00a085;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.cookie-banner .btn-secondary {
    background: transparent;
    color: #636e72;
    border-color: #ddd;
}

.cookie-banner .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #2d3436;
    border-color: #636e72;
    transform: none;
}

.cookie-link {
    color: #0984e3;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.cookie-link:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .responsible-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .regulatory-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .regulatory-logo {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions {
        align-items: center;
        gap: 0.8rem;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .cookie-banner .btn {
        min-width: 100px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        margin: 0 10px;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Additional Page Styles */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.last-updated {
    opacity: 0.8;
    font-size: 1rem;
}

.warning-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.warning-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.age-badge.large {
    width: 100px;
    height: 100px;
    font-size: 2rem;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.text-content h2 {
    color: #2d3436;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.features-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.features-list ul {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #2d3436;
}

.values {
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box,
.regulatory-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box h3,
.regulatory-info h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.fact-list {
    list-style: none;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.fact-list li:last-child {
    border-bottom: none;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-weight: bold;
    left: 3px;
    top: -2px;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #636e72;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: none;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.response-times,
.help-topics {
    list-style: none;
}

.response-times li,
.help-topics li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.response-times li:last-child,
.help-topics li:last-child {
    border-bottom: none;
}

.business-hours .note {
    font-style: italic;
    color: #636e72;
    margin-top: 1rem;
}

.info-box.important {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.help-resources {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.help-link {
    display: block;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2d3436;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.help-link:hover {
    transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsible Gambling Page Styles */
.gambling-warning {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 40px 0;
}

.warning-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.warning-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.warning-item h3 {
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.problem-signs,
.self-assessment,
.help-resources,
.gambling-tools,
.safe-gambling-tips,
.family-support {
    padding: 60px 0;
}

.problem-signs {
    background: rgba(255, 255, 255, 0.95);
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.signs-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signs-column h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.signs-column ul {
    list-style: none;
}

.signs-column li {
    padding: 0.3rem 0;
    color: #2d3436;
    position: relative;
    padding-left: 1.5rem;
}

.signs-column li::before {
    content: '•';
    color: #ff6b6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.assessment-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.assessment-list {
    list-style: none;
    counter-reset: question-counter;
}

.assessment-list li {
    counter-increment: question-counter;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 3rem;
}

.assessment-list li::before {
    content: counter(question-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background: #ff6b6b;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.assessment-list li:last-child {
    border-bottom: none;
}

.assessment-result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #ff6b6b;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.resource-logo:hover {
    transform: scale(1.05);
}

.resource-card h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.contact-info {
    text-align: left;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.tools-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-item,
.tip-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tool-item h3,
.tip-category h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.tip-category ul {
    list-style: none;
}

.tip-category li {
    padding: 0.3rem 0;
    color: #2d3436;
    position: relative;
    padding-left: 1.5rem;
}

.tip-category li::before {
    content: '✓';
    color: #00b894;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.family-advice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advice-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.family-resources {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

/* Privacy Policy, Cookie Policy, Terms Styles */
.privacy-content,
.cookie-content,
.terms-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.privacy-layout,
.cookie-layout,
.terms-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.privacy-sidebar,
.cookie-sidebar,
.terms-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.toc-box h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.toc-nav ol {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-nav li {
    counter-increment: toc-counter;
    margin-bottom: 0.5rem;
}

.toc-nav a {
    display: block;
    padding: 0.5rem 0;
    color: #2d3436;
    text-decoration: none;
    position: relative;
    padding-left: 2rem;
    transition: color 0.3s ease;
}

.toc-nav a::before {
    content: counter(toc-counter);
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.toc-nav a:hover {
    color: #ff6b6b;
}

.privacy-section,
.cookie-section,
.terms-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.privacy-section h2,
.cookie-section h2,
.terms-section h2 {
    color: #2d3436;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.privacy-section h3,
.cookie-section h3,
.terms-section h3 {
    color: #2d3436;
    margin: 1.5rem 0 1rem;
}

.important-box,
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.data-use-grid,
.sharing-scenarios,
.retention-periods,
.security-measures,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.use-category,
.right-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ecf0f1;
}

.use-category h3,
.right-item h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.cookie-controls {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.purpose-grid,
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item,
.cookie-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #ecf0f1;
}

.cookie-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2d3436;
}

.cookie-table code {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.browser-item h4 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Terms Specific Styles */
.agreement-box,
.service-grid,
.eligibility-requirements,
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item,
.requirement,
.prohibited-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ecf0f1;
}

.important-disclaimer {
    background: #ffe6e6;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.disclaimer-box.warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
}

.warranty-disclaimer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #6c757d;
}

.affiliate-info,
.jurisdiction-info,
.changes-process {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.terms-acceptance {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

/* Active navigation link */
.nav-menu a.active {
    color: #ff6b6b;
    font-weight: 600;
}

/* Mobile Responsiveness for Additional Pages */
@media (max-width: 768px) {
    .content-grid,
    .contact-grid,
    .privacy-layout,
    .cookie-layout,
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-sidebar,
    .cookie-sidebar,
    .terms-sidebar {
        position: static;
        order: -1;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .warning-grid,
    .signs-grid,
    .resources-grid,
    .tools-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
} 