/* Hand-drawn style CSS for current-arc.com */

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

:root {
    /* Hand-drawn color palette inspired by Germany */
    --primary-color: #d4234a; /* German red */
    --secondary-color: #ffcc02; /* German gold */
    --accent-color: #000000; /* German black */
    --background-color: #fefefe;
    --text-color: #2c2c2c;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    
    /* Hand-drawn fonts */
    --heading-font: 'Comic Sans MS', cursive, sans-serif;
    --body-font: 'Comic Sans MS', cursive, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 15px;
    
    /* Hand-drawn effects */
    --sketch-filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    --wiggle-animation: wiggle 3s ease-in-out infinite;
}

/* Hand-drawn animations */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(0.5deg) translateY(-1px); }
    50% { transform: rotate(-0.5deg) translateY(1px); }
    75% { transform: rotate(0.3deg) translateY(-0.5px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes draw {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

/* Base Typography */
body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    overflow-x: hidden;
}

/* Hand-drawn border utility */
.sketch-border {
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    position: relative;
}

.sketch-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transform: rotate(0.5deg);
    z-index: -1;
}

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

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Buttons with hand-drawn style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 3px solid;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-0.5deg);
    filter: var(--sketch-filter);
}

.btn:hover {
    transform: rotate(0.5deg) scale(1.05);
    animation: var(--wiggle-animation);
}

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

.btn-primary:hover {
    background-color: #b31e3a;
    border-color: #b31e3a;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 4px solid var(--primary-color);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: rotate(-0.2deg);
}

.cookie-content h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 20px;
    border: 3px solid var(--primary-color);
    transform: rotate(0.5deg);
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
}

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

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

/* Header and Navigation */
.header {
    background-color: white;
    border-bottom: 4px solid var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: rotate(-0.1deg);
    filter: var(--sketch-filter);
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
    transform: rotate(1deg);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    animation: float 4s ease-in-out infinite;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-0.3deg);
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    transform: rotate(0.3deg) scale(1.1);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    transform: rotate(-1deg);
}

.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);
}

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    animation: var(--wiggle-animation);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(-0.5deg);
    filter: var(--sketch-filter);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    transform: rotate(0.2deg);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--secondary-color) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, var(--primary-color) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    transform: rotate(-0.3deg);
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    filter: var(--sketch-filter);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.hero-illustration {
    text-align: center;
    transform: rotate(0.5deg);
}

.hero-img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: var(--sketch-filter);
}

/* About Section */
.about {
    background-color: var(--light-gray);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 10px,
        var(--secondary-color) 10px,
        var(--secondary-color) 20px
    );
    transform: rotate(-0.1deg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(-0.3deg);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 2px dashed var(--border-color);
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: rotate(0.2deg) translateX(10px);
    color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 3px solid var(--border-color);
    position: relative;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    filter: var(--sketch-filter);
}

.service-card:hover {
    transform: rotate(0.5deg) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    transform: rotate(1deg);
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(0.3deg);
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 3px solid var(--secondary-color);
    position: relative;
    transform: rotate(0.3deg);
    transition: all 0.3s ease;
    filter: var(--sketch-filter);
}

.testimonial-card:hover {
    transform: rotate(-0.3deg) scale(1.02);
    border-color: var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: var(--heading-font);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed var(--border-color);
    padding-top: 15px;
}

.author-info h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.rating {
    font-size: 1.2rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 3px solid var(--border-color);
    position: relative;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
    filter: var(--sketch-filter);
}

.blog-card:hover {
    transform: rotate(0.2deg) scale(1.02);
    border-color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-color);
}

.blog-category {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: bold;
    transform: rotate(-2deg);
}

.blog-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 10px;
    transform: rotate(0.2deg);
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-title a:hover {
    text-decoration: underline;
}

.blog-excerpt {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: rotate(0.5deg) scale(1.1);
}

/* Blog Article Sections */
.blog-article {
    padding: 120px 0 80px;
    background-color: white;
}

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

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: bold;
    transform: rotate(-0.5deg);
}

.back-link:hover {
    transform: rotate(0.5deg) scale(1.1);
}

.article-header h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(-0.3deg);
}

.article-meta {
    color: var(--text-color);
    font-size: 0.9rem;
    border: 2px dashed var(--border-color);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    transform: rotate(0.2deg);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact/Subscription Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 4px solid var(--accent-color);
    transform: rotate(-0.5deg);
    filter: var(--sketch-filter);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
    font-family: var(--heading-font);
    transform: rotate(0.2deg);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 3px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    transform: rotate(-0.1deg);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: rotate(0.1deg) scale(1.02);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Legal Section */
.legal {
    background-color: var(--light-gray);
    padding: 40px 0;
    border-top: 4px solid var(--primary-color);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
}

.legal-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(0.3deg) scale(1.05);
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.legal-modal-content {
    background-color: white;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--border-radius);
    border: 4px solid var(--primary-color);
    transform: rotate(0.2deg);
    filter: var(--sketch-filter);
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 3px solid var(--border-color);
    background-color: var(--light-gray);
}

.legal-modal-header h2 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(-15deg) scale(1.2);
}

.legal-modal-body {
    padding: 30px;
    line-height: 1.6;
}

.legal-modal-body h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-family: var(--heading-font);
}

.legal-modal-body p {
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 50%, var(--secondary-color) 50%);
    background-size: 20px 4px;
    transform: rotate(-0.1deg);
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-bottom: 20px;
    transform: rotate(-0.3deg);
}

.footer-section p,
.footer-section ul {
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
    transform: rotate(0.1deg);
}

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

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

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

.footer-social a {
    display: inline-block;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: rotate(5deg) scale(1.2);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 2px dashed var(--border-color);
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    padding: 120px 0 50px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    border: 4px solid var(--primary-color);
    transform: rotate(-0.5deg);
    filter: var(--sketch-filter);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: var(--wiggle-animation);
}

.thanks-content h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transform: rotate(0.3deg);
}

.thanks-details {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    border: 2px dashed var(--border-color);
    transform: rotate(0.2deg);
}

.thanks-details h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-details ul {
    list-style: none;
    margin: 0;
}

.thanks-details ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.thanks-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.thanks-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    border: 3px solid var(--secondary-color);
    transform: rotate(0.3deg);
}

.thanks-contact h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        border-bottom: 3px solid var(--secondary-color);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

    .legal-links {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

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

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

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

    .subscription-form {
        padding: 25px;
    }

    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 20px;
    }

    .legal-modal-content {
        margin: 10px;
    }

    .legal-modal-body {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .legal-modal,
    .nav-toggle {
        display: none;
    }

    body {
        font-size: 12px;
        line-height: 1.4;
    }

    .hero {
        padding-top: 0;
    }

    .btn {
        border: 1px solid #000;
        background: transparent;
        color: #000;
    }
}
