/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4aa;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4aa;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa 0%, #4fd1c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0aec0;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.age-badge {
    background: #e53e3e;
    border-color: #e53e3e;
    color: white;
    font-weight: 700;
}

/* Warning Section */
.warning-section {
    padding: 2rem 0;
}

.warning-box {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.3);
}

.warning-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.warning-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.warning-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.warning-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.warning-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Casino Cards Section */
.casinos-section {
    padding: 4rem 0;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.casino-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(15, 20, 25, 0.9) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa 0%, #4fd1c7 100%);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
}

/* Prevent text selection on clickable cards */
.casino-card * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/* Logo should not be clickable separately */
.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    pointer-events: none;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4aa;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-info {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-label {
    font-size: 0.9rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.age-warning {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #ff6b6b;
    text-align: center;
    font-weight: 500;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.casino-features li::before {
    content: '✓';
    color: #00d4aa;
    font-weight: bold;
}

.min-deposit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.min-deposit::before {
    content: '💳';
}

.license-info {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 1rem;
}

.license-link {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.license-link:hover {
    color: #4fd1c7;
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
}

.visit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #4fd1c7 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #00b894 0%, #4fd1c7 100%);
}

/* Active state for card clicks */
.casino-card:active {
    transform: translateY(-2px);
}

.terms-text {
    font-size: 0.75rem;
    color: #718096;
    text-align: center;
    margin-top: 1rem;
}

.discover-more {
    text-align: center;
}

.discover-btn {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav {
        display: none;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* How to Use Section */
.how-to-use-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.criteria-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.criteria-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Importance Section */
.importance-section {
    padding: 60px 0;
    background: #0f0f0f;
}

/* UK Regulation Section */
.regulation-section {
    padding: 60px 0;
    background: #1a1a1a;
}

/* Game Types Section */
.game-types-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-type-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.game-type-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.game-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.game-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.game-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Best Casino Section */
.best-casino-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.checklist {
    margin: 40px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
}

.check-icon {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

.final-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Enhanced Safer Gambling Section */
.safer-gambling-section {
    padding: 80px 0;
    background: #0f0f0f;
    border-top: 2px solid var(--accent-color);
}

.safer-gambling-title {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.safer-gambling-content {
    margin-bottom: 50px;
}

.safer-gambling-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.organizations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.help-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 2px solid #ff4444;
    margin-top: 40px;
}

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

.help-icon {
    font-size: 32px;
}

.help-title {
    color: #ff4444;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.help-contacts {
    margin-bottom: 30px;
}

.help-contact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info strong {
    color: #fff;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.learn-more-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
a {
    color: #00d4aa;
    text-decoration: none; /* Optional: Removes the default underline from links */
}

/* Optional: Add hover state for better user experience */
a:hover {
    color: #f2f4f4; /* A slightly darker shade for hover effect */
    text-decoration: underline; /* Optional: Adds underline on hover */
}
.learn-more-btn:hover {
    background: #00b894;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

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

.copyright {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.footer-text {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #ff4444;
    flex-wrap: wrap;
    text-align: center;
}

.warning-triangle {
    font-size: 20px;
    color: #ff4444;
}

.footer-warning-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.age-verification-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.age-verification-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .organizations-logos {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .org-logo-card {
        min-width: 200px;
        max-width: 280px;
    }
    
    .help-section {
        padding: 25px;
    }
    
    .help-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .help-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-warning {
        flex-direction: column;
        gap: 10px;
    }
    
    .safer-gambling-title {
        font-size: 28px;
    }
    
    .criteria-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* CSS Variables */
:root {
    --accent-color: #00d4aa;
    --warning-color: #ff4444;
    --background-dark: #0f0f0f;
    --background-light: #1a1a1a;
    --card-background: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
}

/* Organization Logo Cards */
.org-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.org-link:hover {
    text-decoration: none;
}

.org-logo-card {
    background: #4a4a4a;
    border: 2px solid #00d4aa;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.org-logo-card.wide {
    min-width: 180px;
}

.org-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
    border-color: #4fd1c7;
}

.org-icon {
    background: #00d4aa;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin: 0 auto 8px auto;
}

.org-icon.circle {
    background: none;
    border: 2px solid #00d4aa;
    color: #00d4aa;
    font-size: 16px;
    font-weight: bold;
}

.org-name {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.org-name.large {
    font-size: 18px;
    margin-bottom: 8px;
}

.org-name.accent {
    color: #00d4aa;
    margin-bottom: 8px;
}

.org-desc {
    color: #ccc;
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}

/* Page-specific styles for About, Contact, Privacy, Terms, Cookies pages */

/* Last Updated Date */
.last-updated {
    color: #a0aec0;
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.content-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.card-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.value-title {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.value-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-container,
.contact-info-container {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #333;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    accent-color: var(--accent-color);
}

.form-link {
    color: var(--accent-color);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4fd1c7 100%);
    border: none;
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00b894 0%, #4fd1c7 100%);
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-color);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.info-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.info-text {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.info-description {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.faq-question {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.faq-answer {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Legal Document Styles */
.legal-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-title {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.legal-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 15px 0;
}

.legal-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.legal-list {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 20px;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Types */
.cookie-type {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid #333;
}

/* Cookie Settings Section */
.cookie-settings-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.cookie-controls {
    margin: 40px 0;
}

.cookie-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.control-info {
    flex: 1;
}

.control-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.control-description {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.control-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-label {
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cookie-btn {
    background: #2a2a2a;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.cookie-btn.accept-all {
    background: var(--accent-color);
    color: #000;
}

.cookie-btn.accept-all:hover {
    background: #00b894;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-document {
        padding: 0 10px;
    }
    
    .cookie-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
} 
/* Cookie Consent Pop-up Styles */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    left: 20px;   /* Distance from the left */
    /* Remove transform: translateX(-50%); as it's for center positioning */
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    padding: 25px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    max-width: 500px;
    width: 90%; /* Adjust width for responsiveness */
    display: none; /* Hidden by default */
    animation: fadeInLeft 0.5s forwards; /* New animation for left side */
}

.cookie-consent-content {
    text-align: center;
}

.cookie-consent-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-consent-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-consent-link:hover {
    color: #4fd1c7;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-consent-btn.accept-all {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4fd1c7 100%);
    color: #0f1419; /* Darker text for contrast */
}

.cookie-consent-btn.accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #00b894 0%, #4fd1c7 100%);
}

.cookie-consent-btn.manage-settings {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cookie-consent-btn.manage-settings:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.15);
}

/* New Keyframe Animation for bottom-left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px); /* Starts off-screen to the left */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Responsive adjustments for the cookie popup */
@media (max-width: 600px) {
    .cookie-consent-popup {
        padding: 20px;
        bottom: 15px;
        left: 15px; /* Adjust left position for smaller screens */
        width: calc(100% - 30px); /* Full width minus padding */
        max-width: none; /* Remove max-width constraint */
    }

    .cookie-consent-text {
        font-size: 14px;
    }

    .cookie-consent-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 10px 20px;
    }
}

/* General mobile styles */
@media (max-width: 768px) {
    .nav {
        display: none; /* Hide regular nav on mobile */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001; /* Ensure it's above other content */
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: #4fd1c7; /* Color of the bars */
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* Hamburger active state (turns into an 'X') */
    .hamburger.is-active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000; /* Above everything except the hamburger itself */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .mobile-menu-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        background-color: #fff; /* Menu background */
        padding: 40px 20px;
        border-radius: 8px;
        text-align: center;
        width: 90%;
        max-width: 400px;
        position: relative;
    }

    .close-menu-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 30px;
        color: #4fd1c7;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .mobile-nav-link {
        color: #333;
        text-decoration: none;
        font-size: 1.2em;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        transition: color 0.2s ease-in-out;
    }

    .mobile-nav-link:hover {
        color: #007bff; /* Example hover color */
    }

    .header-content {
        justify-content: space-between; /* To push logo left and hamburger right */
    }
}

/* Hide hamburger on larger screens */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    .mobile-menu-overlay {
        display: none;
    }
}