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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Hand-drawn aesthetic variables */
:root {
    --primary-color: #d4b896;
    --secondary-color: #8b5a3c;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #fdf8f2;
    --border-sketch: #ddd;
    --shadow-sketch: rgba(0, 0, 0, 0.1);
}

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

/* Typography with hand-drawn feel */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Brush Script MT', cursive, 'Georgia', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    transform: rotate(-0.5deg);
}

h2 {
    font-size: 2rem;
    transform: rotate(0.3deg);
}

h3 {
    font-size: 1.5rem;
    transform: rotate(-0.2deg);
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Buttons with hand-drawn style */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: 3px solid;
    border-radius: 25px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    position: relative;
    background: none;
    font-size: 1rem;
    box-shadow: 0 4px 8px var(--shadow-sketch);
}

.btn:hover {
    transform: rotate(0.5deg) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Header */
.header {
    background-color: var(--bg-light);
    border-bottom: 3px solid var(--border-sketch);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-sketch);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transform: rotate(-1deg);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    transform: rotate(0.2deg);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
    transform: rotate(-0.2deg) translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transform: rotate(2deg);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23f0f0f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

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

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    transform: rotate(-1deg);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    transform: rotate(0.3deg);
}

.hero-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: rotate(2deg);
    filter: drop-shadow(5px 5px 15px var(--shadow-sketch));
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

/* Services Section */
.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--border-sketch);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-sketch);
}

.service-card:hover {
    transform: rotate(0.5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.service-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(3px 3px 6px var(--shadow-sketch));
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    transform: rotate(-1deg);
    filter: drop-shadow(5px 5px 15px var(--shadow-sketch));
}

/* Testimonials */
.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-sketch);
    transform: rotate(0.3deg);
    box-shadow: 0 5px 20px var(--shadow-sketch);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: rotate(-0.3deg) translateY(-5px);
}

.testimonial-card:nth-child(2) {
    transform: rotate(-0.4deg);
}

.testimonial-card:nth-child(3) {
    transform: rotate(0.6deg);
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    text-align: right;
}

.testimonial-author strong {
    color: var(--secondary-color);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-sketch);
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-sketch);
}

.blog-card:hover {
    transform: rotate(0.2deg) translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card:nth-child(2) {
    transform: rotate(0.4deg);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-center {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 3px solid white;
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    transform: rotate(0.2deg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.newsletter .btn {
    justify-self: center;
    background-color: white;
    color: var(--secondary-color);
    border-color: white;
}

/* Contact Section */
.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid var(--border-sketch);
    transform: rotate(-0.5deg);
    box-shadow: 0 10px 30px var(--shadow-sketch);
}

.contact-icon {
    width: 100px;
    height: 100px;
}

.contact-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: rotate(2deg) scale(1.2);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 2px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Cookie Banner & Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

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

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

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
}

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

.cookie-category {
    margin: 1rem 0;
    padding: 1rem;
    border: 2px solid var(--border-sketch);
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Page specific styles */
.page-header {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Legal pages */
.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--border-sketch);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 0.5rem;
}

.legal-text ul, .legal-text ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

/* Tables for cookies page */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-sketch);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-sketch);
}

.cookies-table th {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: bold;
}

.cookie-settings-link {
    background: none;
    border: none;
    color: var(--accent-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.cookie-management {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--border-sketch);
}

/* Article styles */
.article-content {
    margin-top: 80px;
    padding: 4rem 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 2px solid var(--border-sketch);
}

.article-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.article-image {
    text-align: center;
    margin: 3rem 0;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transform: rotate(-0.5deg);
    box-shadow: 0 10px 30px var(--shadow-sketch);
}

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

.article-body h2 {
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.article-body h3 {
    margin: 1.5rem 0 0.5rem;
    color: var(--secondary-color);
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1rem 2rem;
}

.article-tags {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px solid var(--border-sketch);
}

.tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 2px solid var(--secondary-color);
}

.article-navigation {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Team section */
.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--border-sketch);
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-sketch);
}

.team-member:hover {
    transform: rotate(0.3deg) translateY(-5px);
}

.team-member:nth-child(2) {
    transform: rotate(0.4deg);
}

.team-member:nth-child(3) {
    transform: rotate(-0.2deg);
}

.team-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.team-role {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Services detailed */
.services-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.service-detail {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-sketch);
    transform: rotate(-0.2deg);
    box-shadow: 0 5px 20px var(--shadow-sketch);
}

.service-detail:nth-child(2) {
    transform: rotate(0.3deg);
}

.service-detail:nth-child(3) {
    transform: rotate(-0.1deg);
}

.service-detail .service-icon {
    flex-shrink: 0;
}

.service-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-text ul {
    margin: 1rem 0;
}

/* Company info */
.company-info {
    background: var(--bg-light);
}

.company-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.company-data p {
    margin-bottom: 1rem;
}

.company-image img {
    width: 100%;
    height: auto;
    transform: rotate(1deg);
    filter: drop-shadow(5px 5px 15px var(--shadow-sketch));
}

/* Blog posts page */
.blog-posts {
    padding: 4rem 0;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date, .blog-category {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-sketch);
}

/* Thank you page */
.thank-you {
    margin-top: 80px;
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.thank-you-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid var(--border-sketch);
    text-align: left;
}

.thank-you-benefits h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-benefits ul {
    list-style: none;
    padding: 0;
}

.thank-you-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-sketch);
}

.thank-you-benefits li:last-child {
    border-bottom: none;
}

.thank-you-benefits li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thank-you-social {
    margin-top: 3rem;
}

.thank-you-social p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 3px solid var(--border-sketch);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .article-meta {
        flex-direction: column;
        align-items: center;
    }

    .article-navigation {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .company-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .newsletter-form {
        padding: 0 1rem;
    }

    .cookie-modal-content {
        padding: 1rem;
        width: 95%;
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: bounceIn 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Print styles */
@media print {
    .header, .footer, .cookie-banner, .cookie-modal {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

.cookie-content h3,
.cookie-content p {
    color: #d4b896;
}

.footer-section p {
    color: #d4b896;
}
