/* 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: #fefefe;
    overflow-x: hidden;
}

/* Hand-drawn aesthetic variables */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --border-color: #bdc3c7;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Typography with hand-drawn feel */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    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='%23e74c3c' stroke-width='3' fill='none'/%3e%3c/svg%3e") 3;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 20px;
    transform: rotate(0.5deg);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-light);
    transform: rotate(-0.5deg) scale(1.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons with hand-drawn style */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 3px solid;
    transition: var(--transition);
    position: relative;
    transform: rotate(-0.5deg);
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0 #c0392b;
}

.btn-primary:hover {
    transform: rotate(0.5deg) translateY(-2px);
    box-shadow: 6px 6px 0 #c0392b;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 4px 4px 0 #2980b9;
}

.btn-secondary:hover {
    transform: rotate(0.5deg) translateY(-2px);
    box-shadow: 6px 6px 0 #2980b9;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0 rgba(231, 76, 60, 0.3);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(0.5deg) translateY(-2px);
    box-shadow: 6px 6px 0 rgba(231, 76, 60, 0.3);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='grain' width='60' height='60' patternUnits='userSpaceOnUse'%3e%3ccircle cx='30' cy='30' r='1' fill='%23e74c3c' opacity='0.1'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100%25' height='100%25' fill='url(%23grain)'/%3e%3c/svg%3e");
    opacity: 0.5;
}

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

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

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

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

.hero-image img {
    width: 100%;
    height: auto;
    transform: rotate(1deg);
    filter: drop-shadow(8px 8px 0 rgba(231, 76, 60, 0.2));
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: white;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 20h40M20 0v40' stroke='white' stroke-width='0.5' opacity='0.1'/%3e%3c/svg%3e");
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    transform: rotate(0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.service-card:hover {
    transform: rotate(-0.5deg) translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 12px 12px 0 rgba(231, 76, 60, 0.2);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(3px 3px 0 rgba(231, 76, 60, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

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

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

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    transform: rotate(-10deg);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.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;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: rotate(1deg);
    box-shadow: 12px 12px 0 rgba(231, 76, 60, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    transform: rotate(-0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.testimonial-card:hover {
    transform: rotate(0.5deg) translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 12px 12px 0 rgba(243, 156, 18, 0.2);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

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

.testimonial-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='25' cy='25' r='2' fill='white' opacity='0.1'/%3e%3c/svg%3e");
}

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

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    align-items: end;
}

.form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid white;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: white;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    transform: rotate(0.5deg) scale(1.02);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition);
    transform: rotate(0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.blog-card:hover {
    transform: rotate(-0.5deg) translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 12px 12px 0 rgba(52, 152, 219, 0.2);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.blog-meta a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.blog-meta a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

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

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

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    transform: rotate(-0.5deg);
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

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

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

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.social-links a {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    transform: rotate(-0.5deg);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

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

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

.footer-section h4 {
    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: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    transform: rotate(-0.5deg);
}

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

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

.cookie-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.cookie-modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

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

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

.cookie-option input[type="checkbox"] {
    transform: scale(1.2);
}

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

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
}

.last-updated {
    font-style: italic;
    opacity: 0.8;
    margin-top: 1rem;
}

.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.legal-text h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    transform: rotate(-0.5deg);
}

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

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

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

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

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

/* Blog Page */
.blog-content {
    padding: 60px 0;
}

.blog-articles {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.blog-article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition);
    transform: rotate(0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.blog-article-card:hover {
    transform: rotate(-0.5deg) translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 12px 12px 0 rgba(52, 152, 219, 0.2);
}

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

.article-content {
    padding: 2rem;
}

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

.article-meta span {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.category {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

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

.blog-sidebar {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transform: rotate(-0.5deg);
}

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

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 0.5rem;
}

.sidebar-widget a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-widget a:hover {
    color: var(--primary-color);
}

.recent-posts li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.recent-posts span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Article Page */
.article-page {
    padding: 60px 0;
}

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

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

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

.article-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.read-time {
    background: var(--accent-color) !important;
    color: white !important;
    border-color: var(--accent-color) !important;
}

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

.article-image img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    transform: rotate(0.5deg);
    box-shadow: 12px 12px 0 rgba(189, 195, 199, 0.3);
}

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

.article-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

.article-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.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-cta {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    text-align: center;
    margin: 3rem 0;
    transform: rotate(-0.5deg);
}

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

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    transition: var(--transition);
    transform: rotate(-0.5deg);
}

.nav-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: rotate(0.5deg);
}

/* About Page Specific */
.about-story {
    padding: 60px 0;
}

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

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transform: rotate(-0.5deg);
}

.mission-vision {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    text-align: center;
    transform: rotate(0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

.team-section {
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    transform: rotate(-0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transform: rotate(1deg);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.achievements {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    transform: rotate(0.5deg);
    box-shadow: 8px 8px 0 rgba(189, 195, 199, 0.3);
}

.achievement-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.facilities {
    padding: 60px 0;
}

.facilities-text ul {
    list-style: none;
    padding-left: 0;
}

.facilities-text li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transform: rotate(-0.3deg);
}

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

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

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

/* Thanks Page */
.thanks-page {
    padding: 120px 0 60px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.thanks-details h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    text-align: center;
    transform: rotate(-0.5deg);
}

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

.thanks-details li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.5rem;
}

.related-services {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.service-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transform: rotate(0.5deg);
    transition: var(--transition);
}

.service-preview-card:hover {
    transform: rotate(-0.5deg) translateY(-5px);
    border-color: var(--primary-color);
}

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

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

.social-media-section {
    padding: 60px 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    transform: rotate(-0.5deg);
    justify-content: center;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link:hover {
    transform: rotate(0.5deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cookie Settings Link */
.cookie-settings-link {
    text-align: center;
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .blog-article-card {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cookie-modal-content {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .article-image img {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .social-links,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: none !important;
    }
    
    body {
        font-family: serif;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .page-hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
}

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

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

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