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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Hand-drawn aesthetic variables */
:root {
    --primary-color: #27ae60;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hand-drawn-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

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

h2 {
    font-size: 2rem;
    transform: rotate(0.3deg);
    border-bottom: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m0,10 q25,5 50,0 t50,0' stroke='%2327ae60' stroke-width='3' fill='none'/%3e%3c/svg%3e") 1;
    padding-bottom: 0.5rem;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform: rotate(-0.5deg);
    box-shadow: var(--hand-drawn-shadow);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: rotate(0.5deg) scale(1.05);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(-0.5deg) scale(1.05);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transform: rotate(-1deg);
}

.logo img {
    width: 40px;
    height: 40px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transform: rotate(5deg);
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M30,30 Q15,15 0,30 T60,30' stroke='%2327ae60' stroke-width='1' fill='none' opacity='0.1'/%3e%3c/svg%3e") repeat;
    opacity: 0.1;
}

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

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

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

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

.hero-image img {
    width: 100%;
    height: auto;
    transform: rotate(1deg);
    filter: drop-shadow(var(--hand-drawn-shadow));
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
    border: 3px solid var(--border-color);
}

.service-card:hover {
    transform: rotate(0.5deg) scale(1.05);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

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

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

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

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-1deg);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(0.5deg);
    position: relative;
    border: 3px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

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

.testimonial-author {
    margin-top: 1rem;
    border-top: 2px dashed var(--border-color);
    padding-top: 1rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.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: var(--hand-drawn-shadow);
    transform: rotate(-0.3deg);
    transition: transform 0.3s ease;
    border: 3px solid var(--border-color);
}

.blog-card:hover {
    transform: rotate(0.3deg) scale(1.05);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-icon {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--light-bg);
}

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

.blog-card h3 {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

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

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

.blog-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin: 0 1.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(0.5deg);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.5deg);
}

.contact-icon img {
    width: 50px;
    height: 50px;
}

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

.contact-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(0.5deg);
    border: 3px solid var(--border-color);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

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

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

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

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

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

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

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

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: 2px solid;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

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

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

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
}

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

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

/* Page-specific Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    margin-top: 80px;
}

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

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

/* Blog Styles */
.blog-listing {
    padding: 80px 0;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.blog-image {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.blog-image img {
    width: 100px;
    height: 100px;
}

.blog-content {
    padding: 1.5rem;
}

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

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

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

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

.tag {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

/* Blog Article Styles */
.blog-article {
    padding: 80px 0;
    margin-top: 80px;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.article-image {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
}

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

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Special Boxes */
.tip-box, .warning-box, .cta-box {
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 3px solid;
    transform: rotate(-0.5deg);
}

.tip-box {
    background-color: #e8f5e8;
    border-color: var(--primary-color);
}

.warning-box {
    background-color: #fff3cd;
    border-color: var(--accent-color);
}

.cta-box {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    text-align: center;
}

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

/* Checklist Styles */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.checklist-card {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    transform: rotate(-0.5deg);
}

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

.checklist-card ul {
    list-style: none;
    margin-left: 0;
}

.checklist-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.checklist-section {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    transform: rotate(0.5deg);
}

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

.calendar-month {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.3deg);
}

.calendar-month h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.calendar-month ul {
    list-style: none;
    margin-left: 0;
}

.calendar-month li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.article-share {
    margin-top: 2rem;
}

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

.share-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.share-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(0.5deg);
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

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

.related-card {
    display: block;
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.5deg);
}

.related-card:hover {
    transform: rotate(0.5deg) scale(1.05);
}

.related-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.related-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

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

.thanks-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    transform: rotate(-0.5deg);
}

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

.thanks-info li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-urgency {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 3px solid var(--accent-color);
    transform: rotate(0.5deg);
}

.thanks-actions {
    margin: 2rem 0;
}

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

.social-follow {
    margin-top: 2rem;
}

.social-follow .social-links {
    justify-content: center;
}

.social-follow .social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-follow .social-links a:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.5deg);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(0.5deg);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

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

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

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

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Cookie Controls */
.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        display: flex;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        text-align: center;
    }

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

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

    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .checklist-grid,
    .calendar-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

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

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

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

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

    .hero {
        margin-top: 0;
    }

    .blog-article,
    .legal-page {
        margin-top: 0;
    }

    * {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
