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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Hand-drawn style variables */
:root {
    --primary-color: #2c5234;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --hand-drawn-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

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

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

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

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

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

/* Hand-drawn Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 3px solid;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: none;
    font-family: inherit;
    font-size: 16px;
    
    /* Hand-drawn effect */
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,5 90,10 T90,90 Q50,95 10,90 T10,10' stroke='%23333' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.5deg);
}

.btn:hover {
    transform: rotate(0.5deg) scale(1.05);
    box-shadow: var(--hand-drawn-shadow);
}

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

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

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

.btn-secondary:hover {
    background-color: #e09449;
    border-color: #e09449;
}

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

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

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    
    /* Hand-drawn border effect */
    border-bottom: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='10' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,5 Q25,2 50,5 T100,5' stroke='%232c5234' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
}

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

.logo img {
    height: 50px;
    width: auto;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    
    /* Hand-drawn underline effect */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%232c5234' stroke-width='2' fill='none'/%3e%3c/svg%3e");
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    
    /* Hand-drawn line effect */
    border-radius: 2px;
    transform: rotate(-0.2deg);
}

.hamburger span:nth-child(2) {
    transform: rotate(0.2deg);
}

.hamburger span:nth-child(3) {
    transform: rotate(-0.1deg);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M30,10 Q40,20 30,30 Q20,40 30,50 Q40,40 50,30 Q40,20 30,10' fill='none' stroke='%23e8f5e8' stroke-width='1' opacity='0.3'/%3e%3c/svg%3e");
    opacity: 0.1;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    
    /* Hand-drawn text effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(1deg);
}

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

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.3deg);
}

.service-card:hover {
    transform: rotate(0.3deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.about-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-1deg);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: white;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.2deg);
}

.blog-card:hover {
    transform: rotate(0.2deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

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

.blog-content {
    padding: 1.5rem;
}

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

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

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

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

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

.blog-meta span {
    margin-right: 1rem;
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(0.3deg);
}

.testimonial-card:hover {
    transform: rotate(-0.3deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

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

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

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

.contact-item {
    margin-bottom: 1.5rem;
}

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

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

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

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

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid #2c5234;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
    
    /* Hand-drawn input effect */
    transform: rotate(-0.1deg);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
    
    /* Hand-drawn top border */
    border-top: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='10' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,5 Q25,3 50,5 T100,5' stroke='%232c5234' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
}

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

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

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    
    /* Hand-drawn modal effect */
    border: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%232c5234' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    box-shadow: var(--hand-drawn-shadow);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transform: rotate(-0.1deg);
}

.cookie-category label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

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

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

/* Page-specific styles */
.about-hero,
.blog-hero,
.thanks-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    text-align: center;
}

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

.about-hero p,
.blog-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background-color: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(0.5deg);
}

/* Mission */
.mission {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.mission h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.2deg);
}

.mission-card:hover {
    transform: rotate(0.2deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.mission-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.mission-card p {
    color: var(--text-light);
}

/* Team */
.team {
    padding: 80px 0;
    background-color: white;
}

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

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.team-text ul {
    list-style: none;
}

.team-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

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

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-0.5deg);
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(0.3deg);
}

.achievement-card:hover {
    transform: rotate(-0.3deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-light);
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Thanks Section */
.thanks-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-image img {
    width: 100%;
    height: auto;
}

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

.thanks-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Next Steps */
.next-steps {
    padding: 80px 0;
    background-color: white;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.next-steps h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.1deg);
}

.step-card:hover {
    transform: rotate(0.1deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    
    /* Hand-drawn circle effect */
    border: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='25' cy='25' r='20' stroke='%232c5234' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
}

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

.step-card p {
    color: var(--text-light);
}

/* Legal Page */
.legal-page {
    padding: 120px 0 80px;
    background-color: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.legal-page a:hover {
    text-decoration: underline;
}

/* Cookie Settings Section */
.cookie-settings-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    
    /* Hand-drawn section effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.1deg);
}

/* Blog Posts */
.blog-posts {
    padding: 80px 0;
    background-color: white;
}

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

.blog-card.featured img {
    height: 300px;
}

.blog-card.featured .blog-content {
    padding: 0;
}

.blog-card.featured h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

.blog-card.featured .blog-meta .category {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.newsletter-form button {
    white-space: nowrap;
}

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

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

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.breadcrumbs a:hover {
    text-decoration: underline;
}

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

.article-meta .category {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
}

.article h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

.article-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
}

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

.article-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

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

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.article-content strong {
    color: var(--primary-color);
}

.article-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    
    /* Hand-drawn CTA effect */
    border: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%232c5234' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.1deg);
}

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

.article-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.related-articles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    
    /* Hand-drawn underline */
    background-image: url("data:image/svg+xml,%3csvg width='100' height='5' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0,2 Q25,1 50,2 T100,2' stroke='%23f4a261' stroke-width='3' fill='none'/%3e%3c/svg%3e");
}

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

.related-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    
    /* Hand-drawn card effect */
    border: 3px solid var(--border-color);
    border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10,10 Q50,8 90,10 T90,90 Q50,92 10,90 T10,10' stroke='%23e0e0e0' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
    transform: rotate(-0.1deg);
}

.related-card:hover {
    transform: rotate(0.1deg) translateY(-5px);
    box-shadow: var(--hand-drawn-shadow);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
}

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

.related-card h3 a:hover {
    color: var(--accent-color);
}

.related-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        gap: 1rem;
    }
    
    .nav ul.show {
        display: flex;
    }
    
    .hero-content,
    .about-content,
    .story-content,
    .team-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1,
    .about-hero h1,
    .blog-hero h1,
    .article h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .about-hero p,
    .blog-hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .blog-grid,
    .testimonials-grid,
    .mission-grid,
    .achievements-grid,
    .steps-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thanks-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thanks-actions {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .about-hero,
    .blog-hero,
    .article {
        padding: 100px 0 60px;
    }
    
    .hero-text h1,
    .about-hero h1,
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .article h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Accessibility */
.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;
}

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

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

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