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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f5;
}

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

/* Typography - Retro Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px rgba(139, 69, 19, 0.1);
}

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

h2 {
    font-size: 2rem;
    border-bottom: 3px solid #d2691e;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #d2691e;
}

h4 {
    font-size: 1.25rem;
    color: #cd853f;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #654321;
    border-left: 4px solid #d2691e;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
}

/* Links */
a {
    color: #d2691e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Buttons - Retro Style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #d2691e;
    background: #d2691e;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 3px 3px 0px #8b4513;
    position: relative;
}

.btn:hover {
    background: #8b4513;
    color: #fff;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #8b4513;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #d2691e;
}

.btn-outline:hover {
    background: #d2691e;
    color: #fff;
}

.btn-primary {
    background: #d2691e;
}

.btn-secondary {
    background: #cd853f;
    border-color: #cd853f;
    box-shadow: 3px 3px 0px #8b7355;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8b4513;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #d2691e;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.3);
}

.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: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.cookie-modal-content {
    background-color: #faf8f5;
    margin: 10% auto;
    padding: 30px;
    border: 3px solid #d2691e;
    width: 90%;
    max-width: 600px;
    border-radius: 0;
    box-shadow: 5px 5px 0px #8b4513;
}

.close {
    color: #8b4513;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #d2691e;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f7f4;
}

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #d1691f 0%, #a0522d 100%);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    border-bottom: 3px solid #d2691e;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.logo img {
    width: 200px;
}

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

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #ffd700;
    text-decoration: none;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 0;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

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

.hero-text h1 {
    color: #8b4513;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.5);
}

.hero-text p {
    font-size: 1.2rem;
    color: #654321;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

.service-card {
    background: #fff;
    padding: 30px;
    border: 3px solid #d2691e;
    box-shadow: 5px 5px 0px #cd853f;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.5);
}

.service-card h3 {
    color: #8b4513;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #654321;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #8b4513;
}

.service-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #d2691e;
    font-size: 0.8rem;
}

/* About Section */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4a460 0%, #deb887 100%);
}

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

.about-text h2 {
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #654321;
    margin-bottom: 1.5rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f0ebe5;
}

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

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border: 2px solid #cd853f;
    border-radius: 0;
    box-shadow: 3px 3px 0px #deb887;
    text-align: center;
    position: relative;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.2);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #654321;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #d2691e;
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-card cite {
    color: #8b4513;
    font-weight: bold;
}

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

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

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

.blog-card {
    background: #fff;
    border: 2px solid #deb887;
    padding: 25px;
    box-shadow: 3px 3px 0px #cd853f;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: sepia(1) hue-rotate(30deg) saturate(1.3);
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #8b4513;
    text-decoration: none;
}

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

.blog-card p {
    color: #654321;
    margin-bottom: 15px;
}

.read-more {
    color: #d2691e;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #cd853f 0%, #deb887 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info img {
    width: 80px;
    height: 80px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.5);
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 20px;
}

.contact-info p {
    color: #654321;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    color: #8b4513;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #d2691e;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 30px;
    border: 3px solid #d2691e;
    box-shadow: 5px 5px 0px #8b4513;
}

.contact-form h3 {
    color: #8b4513;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #deb887;
    background: #faf8f5;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d2691e;
    background: #fff;
}

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

/* Footer */
.footer {
    background: #8b4513;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #ffd700;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #a0522d;
    color: #deb887;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #deb887 0%, #f4a460 100%);
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content {
    padding: 80px 0;
    background: #faf8f5;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.values-section {
    margin-bottom: 60px;
    text-align: center;
}

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

.value-card {
    background: #fff;
    padding: 30px;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.3);
}

.team-section,
.certifications {
    margin-bottom: 60px;
}

.team-info ul {
    list-style: none;
    padding-left: 0;
}

.team-info li {
    padding: 10px 0;
    border-bottom: 1px solid #deb887;
    position: relative;
    padding-left: 25px;
}

.team-info li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #d2691e;
}

.cert-content ul {
    list-style: none;
    padding-left: 0;
}

.cert-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #654321;
}

.cert-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d2691e;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #cd853f 0%, #deb887 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: #8b4513;
    margin-bottom: 20px;
}

.cta-section p {
    color: #654321;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 80px 0;
    background: #faf8f5;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.5);
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
}

.steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: #d2691e;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #8b4513;
    margin-bottom: 10px;
}

.step-content p {
    color: #654321;
}

.contact-reminder {
    background: #f9f7f4;
    padding: 30px;
    border: 2px solid #deb887;
    margin: 40px 0;
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #faf8f5;
}

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

.last-updated {
    color: #8b4513;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 10px;
    background: #f9f7f4;
    border-left: 4px solid #d2691e;
}

.legal-text h2 {
    color: #8b4513;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    color: #cd853f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
    color: #654321;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border: 2px solid #deb887;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #deb887;
}

.cookies-table th {
    background: #f9f7f4;
    color: #8b4513;
    font-weight: bold;
}

.cookies-table td {
    color: #654321;
}

/* Blog Pages Styles */
.blog-hero {
    background: linear-gradient(135deg, #deb887 0%, #f4a460 100%);
    padding: 60px 0;
    text-align: center;
}

.blog-hero h1 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content {
    padding: 80px 0;
    background: #faf8f5;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-article-card {
    background: #fff;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
    overflow: hidden;
    display: flex;
    gap: 20px;
}

.article-image {
    flex-shrink: 0;
    padding: 20px;
}

.article-image img {
    width: 100px;
    height: 100px;
    filter: sepia(1) hue-rotate(20deg) saturate(1.3);
}

.article-content {
    padding: 20px;
    flex: 1;
}

.article-meta {
    color: #8b4513;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
}

.sidebar-widget h3 {
    color: #8b4513;
    margin-bottom: 20px;
    border-bottom: 2px solid #deb887;
    padding-bottom: 10px;
}

.category-list,
.popular-posts {
    list-style: none;
    padding: 0;
}

.category-list li,
.popular-posts li {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe5;
}

.category-list a,
.popular-posts a {
    color: #654321;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover,
.popular-posts a:hover {
    color: #d2691e;
}

/* Article Pages Styles */
.article-header {
    background: linear-gradient(135deg, #f4a460 0%, #deb887 100%);
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #8b4513;
    text-decoration: none;
}

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

.article-header h1 {
    color: #8b4513;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.article-header .article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #654321;
    font-style: italic;
}

.article-content {
    padding: 80px 0;
    background: #faf8f5;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.article-body {
    background: #fff;
    padding: 40px;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
}

.article-body .article-image {
    text-align: center;
    margin-bottom: 30px;
}

.article-body .article-image img {
    max-width: 200px;
    height: auto;
    filter: sepia(1) hue-rotate(20deg) saturate(1.3);
}

.article-text h2 {
    color: #8b4513;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-text h3 {
    color: #cd853f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-text h4 {
    color: #deb887;
    margin-top: 25px;
    margin-bottom: 12px;
}

.article-text ul,
.article-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 8px;
    color: #654321;
}

.article-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border: 2px solid #deb887;
}

.article-text th,
.article-text td {
    padding: 12px;
    text-align: left;
    border: 1px solid #deb887;
}

.article-text th {
    background: #f9f7f4;
    color: #8b4513;
    font-weight: bold;
}

.article-text td {
    color: #654321;
}

.article-cta {
    background: #f9f7f4;
    padding: 30px;
    border: 2px solid #d2691e;
    margin: 40px 0;
    text-align: center;
}

.article-cta h3 {
    color: #8b4513;
    margin-bottom: 15px;
}

.article-cta p {
    color: #654321;
    margin-bottom: 20px;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.related-articles {
    background: #fff;
    padding: 25px;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
}

.related-articles h3 {
    color: #8b4513;
    margin-bottom: 20px;
    border-bottom: 2px solid #deb887;
    padding-bottom: 10px;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe5;
}

.related-articles a {
    color: #654321;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #d2691e;
}

.article-share {
    background: #fff;
    padding: 25px;
    border: 2px solid #deb887;
    box-shadow: 3px 3px 0px #cd853f;
}

.article-share h3 {
    color: #8b4513;
    margin-bottom: 20px;
    border-bottom: 2px solid #deb887;
    padding-bottom: 10px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #8b4513;
        padding: 20px;
        border-top: 1px solid #a0522d;
    }
    
    .nav.show {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-content .container,
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .blog-article-card {
        flex-direction: column;
    }
    
    .article-image img {
        width: 80px;
        height: 80px;
    }
    
    .hero-buttons,
    .cookie-buttons,
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-header .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .contact-form,
    .article-body {
        padding: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .thanks-actions {
        gap: 15px;
    }
    
    .thanks-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .article-sidebar,
    .blog-sidebar {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .article-body,
    .legal-text {
        box-shadow: none;
        border: none;
        padding: 0;
    }
}

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

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

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

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

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #d2691e;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero {
        background: #fff;
        color: #000;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        border-width: 3px;
    }
    
    .btn {
        border-width: 3px;
    }
}

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