/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Properties for Hand-drawn Style */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background-color: #ffffff;
    --light-background: #f8f9fa;
    --border-color: #bdc3c7;
    --hand-drawn-shadow: 3px 3px 0px rgba(0,0,0,0.1);
    --hand-drawn-border: 2px solid var(--primary-color);
}

/* Base Styles */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

/* Hand-drawn Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: var(--hand-drawn-border);
    position: relative;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-1deg);
}

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

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

.btn-primary:hover, .btn-secondary:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
}

/* Header Styles */
.header {
    background-color: var(--background-color);
    border-bottom: 3px solid var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
    transform: rotate(-1deg);
}

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

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

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

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

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

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

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

.service-card:hover {
    transform: rotate(0deg) scale(1.05);
}

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

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

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

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

.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;
    color: var(--primary-color);
    transform: rotate(-1deg);
}

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

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

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

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

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: var(--hand-drawn-border);
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-1deg);
}

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

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--secondary-color);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial cite {
    color: var(--light-text);
    font-weight: bold;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
}

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

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: var(--hand-drawn-border);
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

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

.blog-card:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
}

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

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

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

.blog-cta {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

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

.newsletter p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid white;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(-1deg);
}

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

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

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

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.newsletter-form button {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: var(--hand-drawn-shadow);
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
}

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

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

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

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.contact-info img {
    width: 100px;
    height: 100px;
    transform: rotate(5deg);
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

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

.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;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

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

.btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: var(--hand-drawn-border);
}

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

.cookie-option {
    margin-bottom: 1rem;
}

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

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

.btn-save, .btn-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

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

.btn-cancel {
    background-color: var(--light-text);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .services h2, .about-text h2, .testimonials h2, .blog-preview h2, .newsletter h2, .contact h2 {
        font-size: 2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Animation for hand-drawn elements */
@keyframes wiggle {
    0% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}

.service-card:hover, .testimonial:hover, .blog-card:hover {
    animation: wiggle 0.5s ease-in-out;
}

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

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

/* ================================
   ABOUT PAGE SPECIFIC STYLES
   ================================ */

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

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23bdc3c7" opacity="0.3"/></svg>') repeat;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    text-shadow: 2px 2px 0px rgba(52, 152, 219, 0.3);
}

.about-hero-text .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--hand-drawn-shadow);
    transform: rotate(1deg);
}

.about-hero-image {
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

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

.about-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.1));
}

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

.company-story h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    transform: rotate(-1deg);
    text-shadow: 2px 2px 0px rgba(231, 76, 60, 0.3);
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-background);
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transform: rotate(0.5deg);
}

.story-text p:nth-child(even) {
    transform: rotate(-0.5deg);
    border-left-color: var(--accent-color);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--light-background) 0%, #ecf0f1 50%, var(--light-background) 100%);
}

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

.mission, .vision {
    background: white;
    padding: 2.5rem;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: var(--hand-drawn-shadow);
    position: relative;
    overflow: hidden;
}

.mission {
    transform: rotate(-2deg);
}

.vision {
    transform: rotate(2deg);
}

.mission:hover, .vision:hover {
    transform: rotate(0deg) scale(1.02);
    transition: transform 0.3s ease;
}

.mission h3, .vision h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text-color);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: white;
}

.values h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    transform: rotate(1deg);
    text-shadow: 2px 2px 0px rgba(52, 152, 219, 0.3);
}

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

.value-card {
    background: var(--light-background);
    padding: 2.5rem;
    border: 3px solid var(--secondary-color);
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:nth-child(1) { transform: rotate(-2deg); }
.value-card:nth-child(2) { transform: rotate(1deg); }
.value-card:nth-child(3) { transform: rotate(-1deg); }

.value-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.15);
}

.value-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-background) 0%, #ecf0f1 100%);
}

.team h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    transform: rotate(-1deg);
    text-shadow: 2px 2px 0px rgba(231, 76, 60, 0.3);
}

.team-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    color: var(--light-text);
    line-height: 1.7;
}

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

.team-member {
    background: white;
    padding: 2.5rem;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.team-member:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.team-member .role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member > p:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
    text-align: left;
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
    background: white;
}

.facilities h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    transform: rotate(1deg);
    text-shadow: 2px 2px 0px rgba(52, 152, 219, 0.3);
}

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

.facilities-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.facilities-list {
    list-style: none;
    margin: 2rem 0;
}

.facilities-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-background);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    position: relative;
    transform: rotate(0.5deg);
}

.facilities-list li:nth-child(even) {
    transform: rotate(-0.5deg);
    border-left-color: var(--accent-color);
}

.facilities-list li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.facilities-image {
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.facilities-image:hover {
    transform: rotate(2deg) scale(1.05);
}

.facilities-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.1));
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--light-background) 0%, #ecf0f1 50%, var(--light-background) 100%);
}

.certifications h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    transform: rotate(-1deg);
    text-shadow: 2px 2px 0px rgba(231, 76, 60, 0.3);
}

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

.cert-item {
    background: white;
    padding: 2rem;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--hand-drawn-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.cert-item:nth-child(1) { transform: rotate(-2deg); }
.cert-item:nth-child(2) { transform: rotate(1deg); }
.cert-item:nth-child(3) { transform: rotate(-1deg); }
.cert-item:nth-child(4) { transform: rotate(2deg); }

.cert-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.15);
}

.cert-item::before {
    content: '🏆';
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.cert-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.cert-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-text);
}

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

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    animation: float 25s infinite linear reverse;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.contact-cta p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    transform: rotate(1deg);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    transform: rotate(-1deg);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-background);
    transform: rotate(-1deg) scale(1.05);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
    transform: rotate(1deg) scale(1.05);
}

/* ================================
   ABOUT PAGE RESPONSIVE STYLES
   ================================ */

@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facilities-list li {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid, .values-grid, .cert-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card, .team-member, .cert-item, .mission, .vision {
        transform: none;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px 0;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero-text .lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .company-story h2, .values h2, .team h2, .facilities h2, .certifications h2 {
        font-size: 2rem;
    }
    
    .contact-cta h2 {
        font-size: 2.2rem;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
    }
}
