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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #008B8B;
    text-decoration: none;
    transition: color 0.4s ease-in-out;
}

a:hover {
    color: #006666;
}

.highlight {
    color: #008B8B;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #006666, #1a9999);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.4);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #008B8B;
    border: 2px solid #008B8B;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #008B8B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #008B8B;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.4s ease-in-out;
}

.nav-link:hover {
    color: #008B8B;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #008B8B;
    transition: width 0.4s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333333;
    transition: all 0.4s ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #008B8B, #C0E8E0);
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-white-text {
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

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

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #008B8B;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.values-list li:last-child {
    border-bottom: none;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 139, 139, 0.2);
    border-color: #008B8B;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card .service-title,
.service-card .service-description,
.service-card .service-btn {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.service-card .service-title {
    margin-top: 2rem;
}

.service-card .service-description {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card .service-btn {
    margin-top: auto;
    margin-bottom: 2rem;
}



.service-title {
    color: #333333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.2);
    border: 2px solid transparent;
}

.service-btn:hover {
    background: linear-gradient(135deg, #006666, #1a9999);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.3);
    color: white;
}

/* Why Choose Us Section */
.why-choose {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 139, 139, 0.3);
}

.advantage-item h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #666666;
    line-height: 1.7;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD447, #FFE066);
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 212, 71, 0.3);
}

.step-title {
    color: #008B8B;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666666;
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #008B8B, #C0E8E0);
    color: white;
}

.contact-form-section .section-title,
.contact-form-section .section-subtitle {
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #008B8B;
    z-index: 2;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    font-size: 1rem;
    transition: all 0.4s ease-in-out;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #FFD447;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 212, 71, 0.2);
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label {
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label a {
    color: #FFD447;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #FFE066;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD447, #FFE066);
    color: #333333;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 212, 71, 0.3);
}

.form-submit:hover {
    background: linear-gradient(135deg, #FFE066, #FFF099);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 212, 71, 0.4);
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #008B8B;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-author h4 {
    color: #008B8B;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #666666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #008B8B;
    margin-bottom: 0.8rem;
}

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

.contact-item a {
    color: #008B8B;
    font-weight: 600;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #008B8B, #C0E8E0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 300px;
}

.map-content h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 212, 71, 0.9);
    color: #333333;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    margin-bottom: 1.5rem;
}

.map-link:hover {
    background: #FFD447;
    transform: translateY(-2px);
    color: #333333;
}

.map-link svg {
    width: 20px;
    height: 20px;
}

.map-directions {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.map-directions h5 {
    color: #FFD447;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.map-directions p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    color: #008B8B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
}

.footer-title {
    color: #008B8B;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.footer-contact a {
    color: #FFD447;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    transition: color 0.4s ease-in-out;
}

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

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 1rem;
    text-align: center;
    color: #cccccc;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: #008B8B;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.4s ease-in-out;
}

.cookie-accept:hover {
    background: #006666;
}

.cookie-more {
    color: #FFD447;
    padding: 0.8rem 1rem;
    text-decoration: underline;
}

.cookie-more:hover {
    color: #FFE066;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.4s ease-in-out;
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Typography */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero */
    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Grid Layouts */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card .service-title,
    .service-card .service-description,
    .service-card .service-btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .service-card .service-title {
        margin-top: 1.5rem;
    }

    .service-card .service-description {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-card .service-btn {
        margin-top: auto;
        margin-bottom: 1.5rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .map-placeholder {
        height: 350px;
    }

    .map-content {
        padding: 1.5rem;
    }

    .map-content h4 {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Form */
    .contact-form {
        padding: 2rem;
    }

    .checkbox-group {
        align-items: flex-start;
    }

    /* Cookie */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

    /* Section Padding */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-content {
        padding: 1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: white;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: #008B8B;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h2 {
    color: #008B8B;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #C0E8E0;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #333333;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #333333;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #333333;
}

.legal-content address {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: normal;
    border-left: 4px solid #008B8B;
}

.last-updated {
    text-align: center;
    color: #666666;
    font-style: italic;
    margin-bottom: 3rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-section {
    background: linear-gradient(135deg, #F5EBDD, #ffffff);
    color: #333333;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid #008B8B;
}

.contact-section h2 {
    color: #008B8B;
    border-bottom: none;
    margin-top: 0;
}

.contact-section p {
    color: #333333;
}

.contact-section a {
    color: #008B8B;
    font-weight: 600;
}

.contact-section a:hover {
    color: #006666;
}

/* Legal Page Mobile Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 0 15px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content ul,
    .legal-content ol {
        padding-left: 1.5rem;
    }

    .contact-section {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-popup,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        page-break-inside: avoid;
    }

    a {
        color: black !important;
    }
}
