@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Romanian flag colors */
    --romania-blue: #002B7F;
    --romania-yellow: #FCD116;
    --romania-red: #CE1126;
    
    /* Brand colors */
    --primary-blue: #0066cc;
    --primary-green: #00a651;
    --dark-blue: #003d7a;
    --accent-purple: #6B46C1;
    --accent-orange: #FB923C;
    
    /* UI colors */
    --dark-text: #0f172a;
    --gray-text: #64748b;
    --light-gray: #f8fafc;
    --border-gray: #e2e8f0;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--dark-text);
}

.display-4 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

/* Modern Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Romanian Flag Logo */
.logo {
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-r {
    color: var(--romania-red);
}

.logo-o {
    color: var(--romania-yellow);
    text-shadow: 0 0 10px rgba(252, 209, 22, 0.3);
}

.logo-node {
    color: var(--romania-blue);
}

/* Navigation */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 25px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lang-switch:hover {
    background: white;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
    }

    .logo {
        font-size: 24px;
    }

    .nav-controls {
        gap: 12px;
    }
    
    .nav-controls .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Hero Section - Modern Gradient */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 20s ease-in-out infinite;
}

.floating-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--romania-blue), var(--romania-yellow));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
}

.floating-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--romania-yellow), var(--romania-red));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, -30px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-30px, 30px) rotate(240deg) scale(0.9); }
}

/* Bonus Badge */
.bonus-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--romania-yellow) 0%, var(--accent-orange) 100%);
    color: var(--dark-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    box-shadow: 0 8px 32px rgba(252, 209, 22, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.bonus-badge i {
    margin-right: 10px;
    font-size: 20px;
}

/* Modern Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green) 0%, #008c43 100%);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--border-gray);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary-custom:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Modern Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--romania-blue), var(--romania-yellow), var(--romania-red));
    border-radius: 3px;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.calculator-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.calculator-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--romania-blue), var(--romania-yellow), var(--romania-red));
}

/* Modern Sliders */
.slider-container {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.slider-container small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-text);
}

.slider-label span:last-child {
    background: var(--light-gray);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
    position: relative;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 0 3px var(--primary-green), 0 4px 12px rgba(0, 166, 81, 0.3);
    transition: all 0.3s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px var(--primary-green), 0 6px 20px rgba(0, 166, 81, 0.4);
}

/* Price Display Card */
.price-display {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-gray);
    position: sticky;
    top: 100px;
}

.price-total {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, rgba(0, 166, 81, 0.1) 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid var(--primary-green);
}

.price-total div {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 20px 0;
}

.price-total span:first-child {
    color: var(--primary-green);
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

/* Horizontal Scroll for Packages on all devices */
.packages-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin: 0 -15px;
    gap: 20px;
    scroll-behavior: smooth;
}

.packages-container::-webkit-scrollbar {
    height: 8px;
}

.packages-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.packages-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.package-wrapper {
    flex: 0 0 320px;
    scroll-snap-align: center;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .package-wrapper {
        flex: 0 0 85%;
    }
}

.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scroll-indicator i {
    animation: slide-left-right 2s ease-in-out infinite;
}

@keyframes slide-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.package-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.package-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--romania-blue), var(--romania-yellow), var(--romania-red));
    transition: top 0.3s;
}

.package-card:hover::before {
    top: 0;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.package-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark-text);
}

.package-specs {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.package-specs li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--gray-text);
    position: relative;
    padding-left: 36px;
}

.package-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-green), #00d068);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.price-selector {
    margin: 28px 0;
}

.price-option {
    padding: 20px;
    margin: 14px 0;
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: white;
}

.price-option:hover {
    border-color: var(--primary-green);
    background: rgba(0, 166, 81, 0.02);
    transform: translateX(4px);
}

.price-option.selected {
    border-color: var(--primary-green);
    background: rgba(0, 166, 81, 0.05);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.15);
}

.save-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, var(--romania-red), var(--romania-yellow));
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(206, 17, 38, 0.3);
}

/* Dashboard Section */
.dashboard-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-gray);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-header .dot:nth-child(1) { background: #ff5f57; }
.dashboard-header .dot:nth-child(2) { background: #ffbd2e; }
.dashboard-header .dot:nth-child(3) { background: #28ca42; }

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Eco Section */
.eco-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.eco-feature {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.eco-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.15);
    border-color: var(--primary-green);
}

.eco-feature i {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.eco-feature h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

/* CloudStack Features */
.feature-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    background: white;
    border-color: var(--primary-green);
}

.feature-box i {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--romania-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Modern Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--romania-blue), var(--romania-yellow), var(--romania-red));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--romania-yellow);
    transform: translateX(5px);
}

.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-compliance {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-compliance a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-compliance a:hover {
    color: var(--romania-yellow);
}

.footer-compliance .separator {
    color: rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--romania-blue), var(--romania-yellow));
    transform: translateY(-3px);
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 30px 20px;
    }

    .price-display {
        position: static;
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-compliance {
        justify-content: center;
    }

    .floating-shape {
        display: none;
    }
}

/* Modern Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-box i {
    color: var(--accent-purple);
    font-size: 24px;
    flex-shrink: 0;
}

.info-box-content {
    flex: 1;
}

.info-box-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark-text);
}

.info-box-content p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-text);
}

/* Alert Box */
.alert-modern {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-modern i {
    color: var(--primary-blue);
    font-size: 20px;
}

.alert-modern small {
    color: var(--dark-text);
    line-height: 1.5;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--border-gray);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.effective-date {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 30px 0 15px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.05) 0%, rgba(252, 209, 22, 0.05) 100%);
    border: 2px solid var(--romania-red);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.warning-box .warning-title {
    color: var(--romania-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th,
.info-table td {
    border: 1px solid var(--border-gray);
    padding: 12px;
    text-align: left;
}

.info-table th {
    background: var(--light-gray);
    font-weight: 600;
}

.gdpr-box {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 43, 127, 0.05) 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-gray);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--light-gray);
    font-weight: 600;
}

.cookie-control {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.contact-info {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-to-home:hover {
    color: var(--primary-green);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
        border-radius: 0;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .info-table {
        font-size: 0.9rem;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}