/* Hand-drawn Interior Design Website - Unearcassa */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Brush Script MT', cursive, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Hand-drawn decorative elements */
.hand-drawn-border {
    border: 3px solid #d4a574;
    border-radius: 15px 5px 20px 8px;
    position: relative;
}

.hand-drawn-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #e8c4a0;
    border-radius: 18px 8px 23px 11px;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive, sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 {
    font-size: 3rem;
    transform: rotate(-1deg);
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: 2rem;
    transform: rotate(-0.3deg);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #d0a16f;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4a574;
}

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

.logo img {
    height: 60px;
    width: auto;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(2deg) scale(1.05);
}

/* Navigation Menu - Desktop and Mobile */
.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-links li {
    position: relative !important;
    display: list-item !important;
}

.nav-links a {
    text-decoration: none !important;
    color: #2c3e50 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px 5px 15px 10px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    white-space: nowrap !important;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #d4a574 !important;
    color: white !important;
    transform: rotate(-1deg) !important;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2) !important;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.show {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 280px !important;
        background: linear-gradient(135deg, #2c3e50, #34495e) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 100px 0 20px !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3) !important;
        gap: 0 !important;
        display: flex !important;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links li {
        width: 100% !important;
        display: block !important;
    }
    
    .nav-links a {
        color: white !important;
        padding: 15px 30px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 0 !important;
        transform: none !important;
        font-size: 1.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    .nav-links a:hover {
        background-color: rgba(212, 165, 116, 0.3) !important;
        color: white !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .mobile-menu {
        display: flex !important;
    }
}

/* Desktop Responsive */
@media screen and (min-width: 769px) {
    .nav-links {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        background: none !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        right: auto !important;
        gap: 2rem !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-links li {
        display: list-item !important;
        width: auto !important;
    }
    
    .nav-links a {
        color: #2c3e50 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px 5px 15px 10px !important;
        font-size: 1.1rem !important;
        border-bottom: none !important;
        width: auto !important;
        display: block !important;
        text-decoration: none !important;
        font-weight: bold !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background-color: #d4a574 !important;
        color: white !important;
        transform: rotate(-1deg) !important;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2) !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff8f0, #f9f3e7, #f5f5dc);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,0 Q50,25 100,0 L100,100 Q50,75 0,100 Z' fill='%23ffffff' opacity='0.3'/%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(10px) rotate(2deg); }
}

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

.hero-text h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #c49660);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px 8px 20px 12px;
    font-size: 1.2rem;
    font-weight: bold;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    border: 3px solid #b8955a;
}

.cta-button:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 5px 5px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #c49660, #b8955a);
}

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

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
    position: relative;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 3rem;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    text-align: center;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #e8c4a0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

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

.service-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
    border-color: #d4a574;
}

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

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
}

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

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.learn-more {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #d4a574;
    padding: 0.8rem 1.5rem;
    border-radius: 15px 5px 20px 8px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: #d4a574;
    color: white;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

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

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial {
    background: linear-gradient(135deg, #fff8f0, #f9f3e7);
    padding: 2rem;
    border-radius: 25px 8px 20px 12px;
    text-align: center;
    transform: rotate(-1deg);
    border: 3px solid #e8c4a0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.testimonial:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
}

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

.testimonial p {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #d4a574;
    font-weight: bold;
    font-style: normal;
}

/* Blog Preview Section */
.blog-preview {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.blog-card {
    background: white;
    border-radius: 20px 5px 25px 8px;
    overflow: hidden;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #e8c4a0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.blog-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #d4a574;
}

.blog-card p {
    padding: 0 1rem 1rem;
    color: #666;
    line-height: 1.6;
}

.view-all-blog {
    display: block;
    text-align: center;
    color: #d4a574;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    padding: 1rem;
    border: 2px solid #d4a574;
    border-radius: 15px 5px 20px 8px;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.view-all-blog:hover {
    background-color: #d4a574;
    color: white;
    transform: rotate(0.5deg) scale(1.02);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px 5px 20px 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-item img {
    width: 40px;
    height: 40px;
}

.contact-item h4 {
    color: #d4a574;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: white;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-form h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px 3px 12px 6px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background: white;
    transform: scale(1.02);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #d4a574, #c49660);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px 5px 20px 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #b8955a;
}

.submit-button:hover {
    transform: rotate(0.5deg) scale(1.02);
    background: linear-gradient(135deg, #c49660, #b8955a);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #bbb;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #d4a574;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

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

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.social-links img {
    width: 30px;
    height: 30px;
}

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

/* Page-specific Styles */

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
    padding: 4rem 0 2rem;
    text-align: center;
}

.about-hero h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.our-story {
    padding: 4rem 0;
    background: white;
}

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

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.mission-vision {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
}

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

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 3px solid #e8c4a0;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.mission-item:nth-child(even) {
    transform: rotate(0.5deg);
}

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

.mission-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

.our-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
}

.our-process h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 3px solid #d4a574;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

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

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

.step-number {
    background: linear-gradient(135deg, #d4a574, #c49660);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    border: 3px solid #b8955a;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
    color: white;
}

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

.contact-cta p {
    color: #bbb;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Blog Page */
.blog-hero {
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
    padding: 4rem 0 2rem;
    text-align: center;
}

.blog-hero h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.blog-articles {
    padding: 4rem 0;
    background: white;
}

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

.article-card {
    background: linear-gradient(135deg, #fff8f0, #f9f3e7);
    border-radius: 20px 5px 25px 8px;
    overflow: hidden;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #e8c4a0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

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

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

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

.article-content {
    padding: 1.5rem;
}

.article-date {
    color: #d4a574;
    font-weight: bold;
    font-size: 0.9rem;
}

.article-content h2 {
    margin: 0.5rem 0 1rem;
    font-size: 1.5rem;
}

.article-content h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h2 a:hover {
    color: #d4a574;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #d4a574;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #d4a574;
    padding: 0.5rem 1rem;
    border-radius: 10px 3px 12px 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    background-color: #d4a574;
    color: white;
    transform: scale(1.05);
}

/* Article Page */
.article-page {
    padding: 2rem 0;
    background: white;
}

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

.article-header .article-date {
    color: #d4a574;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.article-header h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.article-intro {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

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

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px 5px 20px 8px;
    transform: rotate(0.5deg);
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.2));
}

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

.article-content h2 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 2rem;
    border-left: 4px solid #d4a574;
    padding-left: 1rem;
}

.article-content h3 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.article-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.article-content li {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid #e8c4a0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-to-blog {
    color: #d4a574;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #d4a574;
    padding: 0.8rem 1.5rem;
    border-radius: 15px 5px 20px 8px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background-color: #d4a574;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    color: #666;
    font-weight: bold;
}

.article-share a {
    color: #d4a574;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #d4a574;
    border-radius: 8px 3px 10px 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.article-share a:hover {
    background-color: #d4a574;
    color: white;
    transform: scale(1.05);
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0, #f5f5dc);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.personal-message {
    color: #d4a574;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.thanks-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.next-steps {
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 3px solid #e8c4a0;
    margin: 2rem 0;
    text-align: left;
    transform: rotate(-0.5deg);
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ol {
    color: #555;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.secondary-button {
    display: inline-block;
    background: white;
    color: #d4a574;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 15px 5px 20px 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #d4a574;
}

.secondary-button:hover {
    background-color: #d4a574;
    color: white;
    transform: rotate(-0.5deg) scale(1.05);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.contact-info-thanks {
    background: rgba(255,255,255,0.8);
    padding: 1.5rem;
    border-radius: 15px 5px 20px 8px;
    border: 2px solid #e8c4a0;
    margin-top: 2rem;
}

.contact-info-thanks p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
    background: white;
}

.legal-page h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 3rem;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

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

.legal-content h2 {
    color: #2c3e50;
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
    border-left: 4px solid #d4a574;
    padding-left: 1rem;
}

.legal-content h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.legal-content li {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-preferences-section {
    background: linear-gradient(135deg, #fff8f0, #f9f3e7);
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 3px solid #e8c4a0;
    margin: 2rem 0;
    text-align: center;
    transform: rotate(-0.5deg);
}

.cookie-settings-btn {
    background: linear-gradient(135deg, #d4a574, #c49660);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px 5px 20px 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
    border: 3px solid #b8955a;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.cookie-settings-btn:hover {
    transform: rotate(-0.5deg) scale(1.05);
    background: linear-gradient(135deg, #c49660, #b8955a);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    border-top: 4px solid #d4a574;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    color: white;
}

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

.cookie-buttons button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px 3px 10px 5px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #c49660;
}

.cookie-buttons button:hover {
    background: #c49660;
    transform: scale(1.05);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

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

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px 5px 25px 8px;
    border: 4px solid #d4a574;
    max-width: 500px;
    width: 100%;
    transform: rotate(-0.5deg);
}

.cookie-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #fff8f0, #f9f3e7);
    border-radius: 10px 3px 12px 6px;
    border: 2px solid #e8c4a0;
}

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

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4a574;
}

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

.cookie-modal-buttons button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px 4px 15px 7px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #c49660;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.cookie-modal-buttons button:hover {
    background: #c49660;
    transform: scale(1.05);
}

.cookie-modal-buttons button:last-child {
    background: #95a5a6;
    border-color: #7f8c8d;
}

.cookie-modal-buttons button:last-child:hover {
    background: #7f8c8d;
}

/* Responsive Design - Additional mobile adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-text {
        text-align: center;
    }

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

    .mission-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

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

    .article-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .article-share {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .cta-button,
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-item,
    .testimonial,
    .mission-item,
    .process-step,
    .blog-card,
    .article-card {
        padding: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .services,
    .testimonials,
    .blog-preview,
    .about-preview {
        padding: 3rem 0;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    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) rotate(-2deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 3px solid #d4a574;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-item,
    .testimonial,
    .mission-item,
    .process-step,
    .blog-card,
    .article-card {
        border-width: 4px;
    }

    .cta-button,
    .submit-button,
    .cookie-buttons button {
        border-width: 4px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta-button,
    .submit-button,
    .social-links {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }

    p, li {
        color: #000;
    }

    .article-content,
    .legal-content {
        max-width: none;
    }
}
