/* Hand-drawn style CSS for Crisp Assets */

/* Import hand-drawn style fonts */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;600;700&display=swap');

/* CSS Variables for hand-drawn theme */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background-color: #fefefe;
    --white: #ffffff;
    --border-color: #ecf0f1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --sketch-color: #34495e;
    
    /* Hand-drawn effects */
    --sketchy-filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    --wiggle-animation: wiggle 0.3s ease-in-out;
}

/* Global styles with hand-drawn effects */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kalam', cursive;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

/* Hand-drawn typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

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

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

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

h4 {
    font-size: 1.5rem;
}

/* Hand-drawn underlines for headings */
h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: skew(-15deg);
    opacity: 0.7;
}

/* Sketchy borders mixin */
.sketchy-border {
    border: 3px solid var(--sketch-color);
    border-radius: 15px 5px 20px 8px;
    filter: var(--sketchy-filter);
    position: relative;
}

.sketchy-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-color);
    border-radius: 12px 8px 18px 6px;
    opacity: 0.3;
    z-index: -1;
}

/* Hand-drawn buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 25px 5px 25px 5px;
    transform: rotate(-1deg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    animation: var(--wiggle-animation);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    transform: rotate(1deg);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(0deg) translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Wiggle animation for hand-drawn effect */
@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

/* Cookie Banner with hand-drawn style */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 3px solid var(--sketch-color);
    border-radius: 20px 5px 20px 5px;
    padding: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    z-index: 1000;
    transform: rotate(-0.5deg);
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-family: 'Caveat', cursive;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Modal styles with hand-drawn effects */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border: 4px solid var(--sketch-color);
    border-radius: 25px 10px 25px 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: rotate(-0.3deg);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--secondary-color);
    transform: rotate(15deg);
}

/* Header with hand-drawn navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 3px solid var(--border-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    filter: var(--sketchy-filter);
}

.brand-text {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.nav-link:hover {
    color: var(--secondary-color);
    transform: rotate(0deg) translateY(-2px);
}

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

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

/* Mobile hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero section with hand-drawn elements */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.1;
}

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

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

.hero-graphic {
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: var(--sketchy-filter);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Section styling with hand-drawn effects */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* About section */
.about {
    background: var(--white);
}

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

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text h4 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.feature-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    width: 100%;
    max-width: 300px;
    filter: var(--sketchy-filter);
    transform: rotate(-2deg);
}

/* Services section with hand-drawn cards */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border: 3px solid var(--border-color);
    border-radius: 20px 5px 20px 5px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.service-icon img {
    width: 100%;
    height: 100%;
    filter: var(--sketchy-filter);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-card li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials section */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 30px;
    border: 3px solid var(--border-color);
    border-radius: 25px 10px 25px 10px;
    position: relative;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-card:nth-child(even) {
    transform: rotate(-1deg);
}

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

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

.testimonial-icon img {
    width: 100%;
    filter: var(--sketchy-filter);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Blog section */
.blog {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.blog-card {
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 15px 5px 15px 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.blog-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.blog-icon {
    width: 60px;
    height: 60px;
    margin: 20px;
}

.blog-icon img {
    width: 100%;
    filter: var(--sketchy-filter);
}

.blog-content {
    padding: 0 20px 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-category {
    background: var(--accent-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Blog article styles */
.blog-article {
    display: none;
    padding: 120px 0 80px;
    background: var(--white);
}

.blog-article.active {
    display: block;
}

.article-meta {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
}

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

.article-content h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Subscription section */
.subscribe {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
}

.subscribe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subscribe-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.subscribe-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.subscribe-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px 10px 20px 10px;
    border: 3px solid var(--accent-color);
    transform: rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.subscribe-form h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px 3px 10px 3px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    transform: rotate(0deg);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Legal section */
.legal {
    padding: 40px 0;
    background: var(--border-color);
    text-align: center;
}

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

.legal-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--secondary-color);
}

.legal-content {
    max-height: 400px;
    overflow-y: auto;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content li {
    margin: 5px 0;
}

/* Footer with hand-drawn styling */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: rotate(-5deg);
}

.social-link:hover {
    background: var(--accent-color);
    transform: rotate(0deg) scale(1.1);
}

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

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

.footer-credits {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Thanks page styling */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border: 4px solid var(--sketch-color);
    border-radius: 25px 10px 25px 10px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transform: rotate(-0.5deg);
}

.thanks-header {
    margin-bottom: 40px;
}

.thanks-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: var(--sketchy-filter);
}

.thanks-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0;
}

.success-icon {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thanks-body h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    margin: 20px 0;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.steps-list strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.contact-support {
    margin-bottom: 40px;
    text-align: center;
}

.contact-support h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.support-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.thanks-footer {
    border-top: 2px solid var(--border-color);
    padding-top: 30px;
}

.thanks-footer p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-footer .social-links {
    justify-content: center;
}

.thanks-footer .social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    margin: 0 10px;
}

/* Cookie preferences styling */
.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}

.cookie-category p {
    margin: 10px 0 0 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 20px 0;
        border-top: 3px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .subscribe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thanks-content {
        margin: 20px;
        padding: 40px 20px;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .support-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 20px;
    }
    
    .subscribe-form {
        padding: 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .cookie-banner,
    .modal,
    .hamburger {
        display: none !important;
    }
    
    .header {
        position: static;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        border: 2px solid var(--primary-color);
        background: transparent;
        color: var(--primary-color);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ff0000;
        --text-color: #000000;
        --background-color: #ffffff;
        --border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-image,
    .service-card,
    .testimonial-card,
    .blog-card {
        transform: none !important;
    }
}
