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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1E40AF;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-option input {
    margin-right: 10px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #3B82F6;
    color: white;
}

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #021330;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background: #3B82F6;
    color: white;
}

.btn-tertiary {
    background: #6B7280;
    color: white;
}

.btn-tertiary:hover {
    background: #4B5563;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #1E40AF;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3B82F6;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-graphic {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #F8FAFC;
}

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

.about-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.about-icon {
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 1.3rem;
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-item p {
    color: #666;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: white;
}

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

.service-card {
    background: #F8FAFC;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2563EB;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    background: #F8FAFC;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #F8FAFC;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1E40AF;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #3B82F6;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    color: #1E40AF;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #3B82F6;
}

.footer-section h3 {
    color: #3B82F6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3B82F6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3B82F6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.service-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.service-hero-icon {
    margin-bottom: 30px;
}

.service-details {
    padding: 80px 0;
}

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

.service-main h2 {
    color: #1E40AF;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-main h3 {
    color: #1E40AF;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.service-main p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.application-item {
    background: #F8FAFC;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: white;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.application-item h4 {
    color: #1E40AF;
    margin: 15px 0 10px;
    font-weight: 600;
}

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

.spec-group {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 8px;
}

.spec-group h4 {
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.spec-group ul {
    list-style: none;
    padding: 0;
}

.spec-group ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #E5E7EB;
}

.spec-group ul li:last-child {
    border-bottom: none;
}

.spec-group ul li:before {
    content: '✓';
    color: #3B82F6;
    font-weight: bold;
    margin-right: 10px;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.size-option {
    background: white;
    border: 2px solid #E5E7EB;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #3B82F6;
}

.size-option h4 {
    color: #1E40AF;
    margin-bottom: 10px;
    font-weight: 600;
}

.features-list {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 8px;
}

.feature h4 {
    color: #1E40AF;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #E5E7EB;
}

.sidebar-card h3 {
    color: #1E40AF;
    margin-bottom: 20px;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    font-size: 14px;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 10px;
}

.related-services a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-services a:hover {
    color: #2563EB;
    text-decoration: underline;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Service-specific styles */
.event-solutions, .service-types {
    margin: 30px 0;
}

.solution-item, .service-type {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.solution-item h4, .service-type h4 {
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-item ul, .service-type ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.solution-item ul li, .service-type ul li {
    padding: 5px 0;
    color: #666;
}

.solution-item ul li:before, .service-type ul li:before {
    content: '•';
    color: #3B82F6;
    font-weight: bold;
    margin-right: 10px;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: #F8FAFC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.service-item h4 {
    color: #1E40AF;
    margin: 15px 0 10px;
    font-weight: 600;
}

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

.step {
    background: white;
    border: 2px solid #E5E7EB;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step h4 {
    color: #1E40AF;
    margin: 15px 0 10px;
    font-weight: 600;
}

.maintenance-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.plan {
    background: white;
    border: 2px solid #E5E7EB;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.plan.featured {
    border-color: #3B82F6;
    transform: scale(1.05);
}

.plan.featured:before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.plan h4 {
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #F3F4F6;
}

.plan-features li:before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
    margin-right: 10px;
}

.common-issues {
    margin: 30px 0;
}

.issue {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 8px;
}

.issue h4 {
    color: #1E40AF;
    margin-bottom: 8px;
    font-weight: 600;
}

.issue p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.advantage {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 8px;
}

.advantage h4 {
    color: #1E40AF;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .applications-grid,
    .tech-specs,
    .maintenance-plans,
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan.featured {
        transform: none;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Legal Page Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #F8FAFC;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: #1E40AF;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1E40AF;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.2rem;
    margin: 25px 0 10px;
    font-weight: 600;
}

.legal-section p, .legal-section li {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0 15px 20px;
}

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

.legal-section a {
    color: #3B82F6;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2563EB;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cookies-table th, .cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.cookies-table th {
    background: #3B82F6;
    color: white;
    font-weight: 600;
}

.cookies-table tr:hover {
    background: #F8FAFC;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you h1 {
    color: #1E40AF;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    color: #4B5563;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.what-next {
    margin-bottom: 50px;
}

.what-next h2 {
    color: #1E40AF;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.step-item {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.step-item h3 {
    color: #1E40AF;
    font-size: 1.2rem;
    margin: 15px 0 10px;
    font-weight: 600;
}

.step-item p {
    color: #6B7280;
    line-height: 1.6;
}

.cta-section {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-section h3 {
    color: #1E40AF;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Legal and Thank You Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .thank-you {
        padding: 100px 0 60px;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookies-table {
        font-size: 14px;
    }
    
    .cookies-table th, .cookies-table td {
        padding: 8px 10px;
    }
}

/* Print styles */
@media print {
    .cookie-banner,
    .modal,
    .header,
    .newsletter,
    .footer {
        display: none;
    }
}