/* Wind Zenithix - Hand-drawn Style CSS */

/* CSS Variables for Hand-drawn Theme */
:root {
    /* Colors */
    --primary-color: #2B4C8C;
    --secondary-color: #4A90E2;
    --accent-color: #F39C12;
    --text-color: #2C3E50;
    --text-light: #7F8C8D;
    --bg-color: #FDFDFD;
    --bg-secondary: #F8F9FA;
    --border-color: #E9ECEF;
    --white: #FFFFFF;
    --success-color: #27AE60;
    --error-color: #E74C3C;
    
    /* Hand-drawn specific colors */
    --sketch-color: #34495E;
    --highlight-color: #FFE55C;
    --shadow-color: rgba(52, 73, 94, 0.1);
    
    /* Typography */
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-handwritten: 'Comic Sans MS', 'Chalkboard SE', cursive;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Hand-drawn effects */
    --sketch-filter: drop-shadow(2px 2px 4px var(--shadow-color));
    --wiggle-animation: wiggle 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(75, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(39, 174, 96, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
}

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

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

@keyframes drawLine {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-handwritten);
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px var(--shadow-color);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50px;
    transform: rotate(-1deg);
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Buttons with hand-drawn style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-handwritten);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 3px solid;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 8px var(--shadow-color);
}

.btn:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 12px var(--shadow-color);
    animation: var(--wiggle-animation);
}

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

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

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

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

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 8px var(--shadow-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

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

.nav-logo {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
    filter: var(--sketch-filter);
    transition: all 0.3s ease;
}

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

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

.nav-menu a {
    font-family: var(--font-handwritten);
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--bg-secondary);
    transform: rotate(-1deg);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: rotate(-1deg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
}

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

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transform: rotate(-0.5deg);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    transform: rotate(-0.5deg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 50px;
}

/* Services Section */
.services {
    background-color: var(--bg-secondary);
    position: relative;
}

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

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

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

.service-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 12px 12px 24px var(--shadow-color);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: var(--sketch-filter);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: var(--wiggle-animation);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* About Preview Section */
.about-preview {
    padding: var(--section-padding);
}

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

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: var(--sketch-filter);
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title::after {
    background: var(--accent-color);
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

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

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--accent-color);
    font-family: serif;
}

.testimonial-author strong {
    color: var(--accent-color);
    font-family: var(--font-handwritten);
}

.testimonial-author span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Blog Section */
.blog {
    background-color: var(--bg-secondary);
}

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

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

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

.blog-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 10px 10px 20px var(--shadow-color);
    border-color: var(--secondary-color);
}

.blog-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: var(--sketch-filter);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: var(--primary-color);
    font-family: var(--font-handwritten);
    text-decoration: none;
}

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

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

.blog-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, var(--accent-color) 0%, #E67E22 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.subscription-content {
    position: relative;
    z-index: 1;
}

.subscription h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    transform: rotate(-0.5deg);
}

.subscription p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

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

.form-group:nth-child(even) input {
    transform: rotate(0.5deg);
}

.form-group input:focus {
    transform: rotate(0deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(43, 76, 140, 0.2);
}

.form-group input::placeholder {
    color: var(--text-light);
    font-family: var(--font-handwritten);
}

.subscription-form .btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

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

/* Contact Section */
.contact {
    background-color: var(--bg-secondary);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary-color);
    font-family: var(--font-handwritten);
}

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

.social-links a {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-family: var(--font-handwritten);
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: rotate(0deg) translateY(-2px);
}

.contact-hours h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-color) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
}

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

.footer-section h4 {
    font-family: var(--font-handwritten);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    transform: rotate(-0.5deg);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 8px var(--shadow-color);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    transform: rotate(0deg);
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 12px 12px 24px var(--shadow-color);
    border: 3px solid var(--border-color);
    transform: rotate(-0.5deg);
}

.cookie-modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

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

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

.cookie-category p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Content Pages */
.legal-content {
    padding: 120px 0 80px;
    background-color: var(--bg-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 4px 4px 8px var(--shadow-color);
    border: 2px solid var(--border-color);
    transform: rotate(0.2deg);
}

.legal-section:nth-child(even) {
    transform: rotate(-0.2deg);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-section ul, .legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* About Page Specific Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-main {
    padding: var(--section-padding);
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transform: rotate(0.2deg);
}

.values-list li:nth-child(even) {
    transform: rotate(-0.2deg);
}

.team {
    background-color: var(--bg-secondary);
    padding: var(--section-padding);
}

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

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

.team-member:nth-child(even) {
    transform: rotate(-0.5deg);
}

.team-member:hover {
    transform: rotate(0deg) translateY(-5px);
    border-color: var(--secondary-color);
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    filter: var(--sketch-filter);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-color);
    font-family: var(--font-handwritten);
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-preview {
    padding: var(--section-padding);
}

.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--section-padding);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

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

.thank-you-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: var(--sketch-filter);
    animation: float 4s ease-in-out infinite;
}

.thank-you h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 6px 6px 12px var(--shadow-color);
    border: 3px solid var(--border-color);
    transform: rotate(0.5deg);
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transform: rotate(-0.3deg);
}

.step:nth-child(even) {
    transform: rotate(0.3deg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #E67E22);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-handwritten);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 4px 4px 8px var(--shadow-color);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    transform: rotate(-0.5deg);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--accent-color);
}

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

/* Article Pages */
.article {
    padding: 120px 0 40px;
}

.article-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 6px 6px 12px var(--shadow-color);
    border: 3px solid var(--border-color);
    transform: rotate(0.3deg);
}

.article-image {
    width: 100%;
    height: auto;
    filter: var(--sketch-filter);
}

.article-meta h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 4px 4px 8px var(--shadow-color);
    border: 2px solid var(--border-color);
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transform: rotate(-0.2deg);
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.article-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px;
    font-style: italic;
    font-size: 1.1rem;
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 8px var(--shadow-color);
}

.article-content blockquote p {
    margin: 0;
    color: var(--white);
}

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

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-content li strong {
    color: var(--primary-color);
    font-family: var(--font-handwritten);
}

.article-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color), #E67E22);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    transform: rotate(0.5deg);
    box-shadow: 6px 6px 12px var(--shadow-color);
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.related-articles {
    background-color: var(--bg-secondary);
    padding: var(--section-padding);
}

/* Button for cookie management */
#manage-cookies {
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px var(--shadow-color);
        transition: top 0.3s ease;
        z-index: 1000;
        border-top: 3px solid var(--accent-color);
    }
    
    .nav-menu.active {
        top: 70px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Forms Mobile */
    .subscription-form {
        padding: 0 1rem;
    }
    
    /* Article Mobile */
    .article-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-image {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .article-info {
        justify-content: center;
        gap: 1rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    /* Thank You Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        margin: 0 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .subscription,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        color: #000;
    }
    
    .article-content {
        box-shadow: none;
        border: 1px solid #ccc;
        background: #fff;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #0066CC;
        --text-color: #000000;
        --bg-color: #FFFFFF;
        --border-color: #000000;
    }
    
    .btn {
        border-width: 2px;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        border-width: 2px;
        border-color: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-banner {
        animation: none;
    }
    
    .btn:hover {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --bg-secondary: #2d2d2d;
        --text-color: #ffffff;
        --text-light: #cccccc;
        --border-color: #444444;
        --white: #2d2d2d;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
    
    .service-card,
    .testimonial-card,
    .blog-card,
    .legal-section,
    .article-content {
        background-color: var(--bg-secondary);
        color: var(--text-color);
    }
    
    .header {
        background-color: var(--bg-secondary);
    }
    
    .form-group input {
        background-color: var(--bg-secondary);
        color: var(--text-color);
        border-color: var(--border-color);
    }
}

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

.btn:focus {
    outline-color: var(--primary-color);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
