/* Legal Pages Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.nav-logo a {
    text-decoration: none;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Hero Section */
.legal-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #D4AF37 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100% !important;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Content Layout */
.legal-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-sticky {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.toc {
    list-style: none;
    margin-bottom: 30px;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: #64748b;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.toc a:hover {
    color: #1e3a8a;
    border-left-color: #D4AF37;
    padding-left: 20px;
}

.contact-card, .cookie-manager {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.contact-card h4, .cookie-manager h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card p, .cookie-manager p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-btn, .manage-cookies-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover, .manage-cookies-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 40px;
}

.intro-card {
    text-align: center;
}

.intro-card h2 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.intro-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 50px 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-header h2 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
}

.section-content {
    color: #64748b;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 8px;
}

.section-content h3 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
}

.section-content h4 {
    color: #374151;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.data-category, .category-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.data-category:hover, .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-content h4, .data-category h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.category-content ul, .data-category ul {
    list-style: none;
    padding: 0;
}

.category-content li, .data-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.category-content li:last-child, .data-category li:last-child {
    border-bottom: none;
}

.category-content li strong {
    color: #374151;
    min-width: 120px;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.purpose-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.purpose-card.primary { border-top-color: #1e3a8a; }
.purpose-card.secondary { border-top-color: #D4AF37; }
.purpose-card.support { border-top-color: #10b981; }
.purpose-card.legal { border-top-color: #ef4444; }
.purpose-card.marketing { border-top-color: #8b5cf6; }
.purpose-card.security { border-top-color: #f59e0b; }

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.purpose-card h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.purpose-card ul {
    list-style: none;
    padding: 0;
}

.purpose-card li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.purpose-card li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Company Card */
.company-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
}

.company-header i {
    font-size: 2rem;
    color: #D4AF37;
}

.company-header h3 {
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.detail-item i {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-top: 2px;
}

.detail-item h4 {
    color: #1e3a8a;
    font-size: 1rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Important Notice */
.important-notice, .responsibility-note, .security-highlight, .transfer-warning, .no-sale-badge {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.security-highlight {
    background: linear-gradient(135deg, #dcfce7, #22c55e);
    border-left-color: #16a34a;
}

.transfer-warning {
    background: linear-gradient(135deg, #dbeafe, #3b82f6);
    border-left-color: #2563eb;
}

.no-sale-badge {
    background: linear-gradient(135deg, #fecaca, #ef4444);
    border-left-color: #dc2626;
    justify-content: center;
    text-align: center;
}

.important-notice i, .responsibility-note i, .security-highlight i, .transfer-warning i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 2px;
}

.security-highlight i {
    color: #16a34a;
}

.transfer-warning i {
    color: #2563eb;
}

.no-sale-badge i {
    color: #dc2626;
    font-size: 2rem;
}

.important-notice h4, .responsibility-note h4, .security-highlight h3, .transfer-warning h3 {
    color: #92400e;
    margin-bottom: 8px;
}

.security-highlight h3 {
    color: #166534;
}

.transfer-warning h3 {
    color: #1e40af;
}

.no-sale-badge span {
    color: #991b1b;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Terms Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.term-item i {
    color: #10b981;
    font-size: 1.3rem;
    margin-top: 2px;
}

.term-item h4 {
    color: #1e3a8a;
    margin-bottom: 8px;
}

.term-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Process Steps */
.process-steps, .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-content h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    font-weight: 600;
}

tr:hover {
    background: #f8fafc;
}

.free { color: #16a34a; font-weight: 600; }
.partial { color: #f59e0b; font-weight: 600; }
.high { color: #dc2626; font-weight: 600; }
.full { color: #991b1b; font-weight: 600; }
.conditional { color: #6366f1; font-weight: 600; }

/* Time Cards */
.time-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.time-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.time-card.checkin {
    border-top: 4px solid #10b981;
}

.time-card.checkout {
    border-top: 4px solid #ef4444;
}

.time-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.time-card.checkin i {
    color: #10b981;
}

.time-card.checkout i {
    color: #ef4444;
}

.time-card h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.time-card .time {
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 10px;
}

.time-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Special Times */
.special-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.special-time {
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    text-align: center;
}

.special-time i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.special-time h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.special-time p {
    color: #64748b;
    margin-bottom: 5px;
}

.special-time strong {
    color: #1e3a8a;
}

.special-time small {
    color: #9ca3af;
    font-style: italic;
}

/* Payment Methods */
.payment-grid, .method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.payment-method, .method-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #D4AF37;
}

.payment-method:hover, .method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.payment-method i, .method-card .method-icon i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.payment-method h4, .method-card h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.payment-method p, .method-card p {
    color: #64748b;
    margin-bottom: 8px;
}

.payment-method small, .method-card small {
    color: #9ca3af;
    font-style: italic;
}

.method-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.method-card li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 15px;
}

.method-card li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Cookie Types */
.cookie-types-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.type-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.type-card.essential {
    border-top: 4px solid #ef4444;
}

.type-card.performance {
    border-top: 4px solid #3b82f6;
}

.type-card.functionality {
    border-top: 4px solid #10b981;
}

.type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.type-header i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.type-card.essential .type-header i {
    color: #ef4444;
}

.type-card.performance .type-header i {
    color: #3b82f6;
}

.type-card.functionality .type-header i {
    color: #10b981;
}

.type-header h3 {
    color: #1e3a8a;
    margin: 0;
    flex-grow: 1;
}

.status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.required {
    background: #fecaca;
    color: #991b1b;
}

.status.optional {
    background: #dbeafe;
    color: #1e40af;
}

.type-details {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #64748b;
}

.detail i {
    color: #D4AF37;
}

/* Toggle Switches */
.toggle-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #D4AF37;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.toggle-switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Cookie Preferences */
.preference-items {
    margin: 30px 0;
}

.preference-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.preference-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.preference-info h4 {
    color: #1e3a8a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preference-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

.toggle-label {
    font-size: 0.9rem;
    color: #64748b;
}

.preference-details {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.preference-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.save-preferences-btn, .accept-all-btn, .reject-optional-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.save-preferences-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.accept-all-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.reject-optional-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.save-preferences-btn:hover, .accept-all-btn:hover, .reject-optional-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tab System */
.instruction-tabs {
    margin: 25px 0;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active, .tab-btn:hover {
    border-color: #D4AF37;
    background: #D4AF37;
    color: white;
}

.tab-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane ol {
    padding-left: 20px;
}

.tab-pane li {
    margin-bottom: 10px;
    color: #64748b;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.right-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #D4AF37;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.right-card h3 {
    color: #1e3a8a;
    margin-bottom: 5px;
}

.right-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.right-details h4 {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 10px;
}

.right-details ul {
    list-style: none;
    padding: 0;
}

.right-details li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 15px;
}

.right-details li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Application Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.method-card.primary {
    border-top: 4px solid #1e3a8a;
}

.method-details {
    margin: 15px 0;
}

.method-details p {
    margin-bottom: 8px;
}

.method-details strong {
    color: #1e3a8a;
}

.method-details a {
    color: #D4AF37;
    text-decoration: none;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-requirements {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.method-requirements h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1rem;
}

.method-requirements ul {
    list-style: none;
    padding: 0;
}

.method-requirements li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 15px;
}

.method-requirements li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline */
.process-timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #1e3a8a;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 10px;
}

.timeline-duration {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modal */
.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-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 80vh;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
}

.modal-preferences {
    margin: 20px 0;
}

.modal-preference {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-preference:last-child {
    border-bottom: none;
}

.modal-preference label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #1e3a8a;
}

.modal-preference small {
    color: #64748b;
    font-size: 0.85rem;
}

.modal-footer {
    padding: 20px 30px;
    background: #f8fafc;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.save-btn, .cancel-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
}

.cancel-btn {
    background: #e5e7eb;
    color: #6b7280;
}

.save-btn:hover, .cancel-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.legal-footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-content p {
    color: #cbd5e1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .sidebar-sticky {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .data-categories, .purpose-grid, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .time-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-buttons {
        justify-content: center;
    }
    
    .preference-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .legal-hero {
        padding: 60px 0;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .content-section {
        padding: 25px 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 20px;
    }
}