/* 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: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ecf0f1;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(116, 75, 162, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Offers Section */
.offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.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;
    border: 1px solid #e9ecef;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.offer-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.offer-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.offer-body {
    margin-bottom: 2rem;
}

.offer-features ul {
    list-style: none;
    padding: 0;
}

.offer-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.offer-highlight {
    margin-top: 1rem;
    text-align: center;
}

.highlight-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.offer-footer {
    text-align: center;
}

.offer-btn {
    width: 100%;
    margin-bottom: 1rem;
    padding: 15px;
    font-size: 1.1rem;
}

.offer-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

/* Play Safely Section */
.play-safely {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.safety-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safety-header {
    margin-bottom: 2rem;
}

.age-restriction {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.safety-title {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.safety-text {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.safety-organizations h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    min-height: 60px;
}

.org-link {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.org-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.org-logo {
    height: 60px;
    width: 60px;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    display: block;
    margin: 0 auto;
}

.org-link:hover .org-logo {
    filter: brightness(1) invert(0);
}

.safety-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.safety-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.safety-link:hover {
    background: #ffd700;
    color: #2c3e50;
}

/* Content Section */
.content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
}

.content-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-card p {
    color: #555;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    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: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.age-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.age-icon {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #555;
}

.modal-footer {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-footer .btn {
    flex: 1;
    max-width: 200px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    color: #bdc3c7;
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .org-logos {
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .org-logo {
        height: 60px;
        width: 60px;
        max-width: 60px;
        max-height: 60px;
        object-fit: contain;
        margin: 0 auto;
    }
    
    .safety-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .offers,
    .play-safely,
    .content {
        padding: 2rem 0;
    }
    
    .offer-card {
        padding: 1rem;
    }
    
    .safety-content {
        padding: 0 1rem;
    }
    
    .org-logos {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card {
    animation: fadeIn 0.6s ease-out;
}

.content-card {
    animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.org-link:focus,
.safety-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    color: #34495e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.support-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.support-links li {
    margin-bottom: 0.5rem;
}

.support-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.support-links a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    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;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #555;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.feature-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.responsibility-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.responsibility-list li {
    color: #555;
    margin-bottom: 0.5rem;
}

.review-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.criteria-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #ff6b6b;
}

.criteria-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.criteria-item p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Additional Page Styles */
.age-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.age-warning {
    text-align: center;
}

.warning-section {
    margin-bottom: 3rem;
}

.warning-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.warning-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.warning-card p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.emergency-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    background: white;
    color: #e74c3c;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.principle-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.signs-column h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.signs-column ul {
    list-style: none;
    padding: 0;
}

.signs-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.signs-column li:before {
    content: '⚠️';
    margin-right: 0.5rem;
}

.assessment-questions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.question-item {
    padding: 0.5rem 0;
    font-weight: 500;
    color: #2c3e50;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-org {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.org-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.org-image {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.org-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.org-contact p {
    margin-bottom: 0.5rem;
    color: #555;
}

.org-contact a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.org-contact a:hover {
    text-decoration: underline;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b6b;
}

.tool-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.help-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #27ae60;
}

.tip-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.regulator-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.regulator-contact p {
    margin-bottom: 0.5rem;
    color: #555;
}

.regulator-contact a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.regulator-contact a:hover {
    text-decoration: underline;
}

/* Cookie Policy Styles */
.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cookie-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b6b;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h4 {
    color: #2c3e50;
    margin-bottom: 0;
}

.cookie-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.cookie-status.required {
    background: #e74c3c;
    color: white;
}

.cookie-status.optional {
    background: #27ae60;
    color: white;
}

.cookie-examples {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.cookie-examples p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-examples ul {
    margin: 0;
    padding-left: 1.5rem;
}

.third-party-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.third-party-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.third-party-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.third-party-item a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.third-party-item a:hover {
    text-decoration: underline;
}

.cookie-management {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.management-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.management-option h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.browser-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.browser-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.browser-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #27ae60;
}

.right-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.toc-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.toc-list li {
    margin-bottom: 0.5rem;
    page-break-inside: avoid;
    break-inside: avoid;
}

.toc-list a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.data-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.data-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.data-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.data-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.data-category li {
    padding: 0.3rem 0;
    color: #555;
}

.usage-purposes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.usage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.usage-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.usage-item ul {
    margin-bottom: 1rem;
}

.usage-item li {
    padding: 0.3rem 0;
    color: #555;
}

.sharing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sharing-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #27ae60;
}

.sharing-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.security-measures {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.security-measures h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.security-measures ul {
    margin: 0;
    padding-left: 1.5rem;
}

.security-measures li {
    padding: 0.3rem 0;
    color: #555;
}

.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.retention-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.retention-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.retention-item p {
    color: #555;
    margin-bottom: 0;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.legal-basis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.basis-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #9b59b6;
}

.basis-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cookie-policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Terms of Service Styles */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.definitions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.definition-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.definition-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.eligibility-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.requirement-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.usage-rules {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.usage-rules h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.usage-rules ul {
    margin-bottom: 2rem;
}

.usage-rules li {
    padding: 0.5rem 0;
    color: #555;
}

.ip-section,
.third-party-section,
.disclaimers,
.liability-section,
.responsible-gambling-terms,
.termination-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.ip-section h4,
.third-party-section h4,
.disclaimers h4,
.termination-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.final-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.final-notice h4 {
    color: white;
    margin-bottom: 1rem;
}

.final-notice p {
    color: white;
    margin-bottom: 0;
}

.final-notice a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.final-notice a:hover {
    text-decoration: none;
}

.responsible-notice {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    margin-top: 2rem;
}

.responsible-notice p {
    margin-bottom: 0;
    color: #555;
}

.responsible-notice a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.responsible-notice a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .review-criteria {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .support-organizations {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .help-tips {
        grid-template-columns: 1fr;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
    
    .third-party-cookies {
        grid-template-columns: 1fr;
    }
    
    .cookie-management {
        grid-template-columns: 1fr;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .cookie-rights {
        grid-template-columns: 1fr;
    }
    
    .definitions {
        grid-template-columns: 1fr;
    }
    
    .eligibility-requirements {
        grid-template-columns: 1fr;
    }
    
    .emergency-links {
        flex-direction: column;
    }
    
    .org-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .toc-list {
        columns: 1;
    }
    
    .data-categories {
        grid-template-columns: 1fr;
    }
    
    .usage-purposes {
        grid-template-columns: 1fr;
    }
    
    .sharing-categories {
        grid-template-columns: 1fr;
    }
    
    .retention-periods {
        grid-template-columns: 1fr;
    }
    
    .rights-list {
        grid-template-columns: 1fr;
    }
    
    .legal-basis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-card,
    .contact-form-container {
        padding: 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .feature-card,
    .criteria-item {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .modal,
    .cookie-consent {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .offer-card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
} 