/* 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin-bottom: 1rem;
    color: #2c1810;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a3728;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #633507;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #8b4513;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #dd7526;
    border: 1px solid #4a3728;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #4a3728;
    color: white;
}

.btn-hero {
    background: linear-gradient(135deg, #cd853f, #daa520);
    color: #2c1810;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #daa520, #cd853f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.4);
}

.btn-service, .btn-contact, .btn-newsletter {
    background: #8b4513;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service:hover, .btn-contact:hover, .btn-newsletter:hover {
    background: #a0522d;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #cd853f;
}

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

.nav-menu a {
    color: #f5f5dc;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(205, 133, 63, 0.2);
    color: #cd853f;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #cd853f;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c1810, #4a3728);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #cd853f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f5f5dc;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    display: block;
}

/* Company Info */
.company-info {
    background: white;
    padding: 100px 0;
}

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

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list ul {
    list-style: none;
    padding: 20px 0;
}

.features-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.features-list li:before {
    content: "☕";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 1.2rem;
}

/* Services */
.services {
    background: linear-gradient(135deg, #f5f5dc, #faf8f5);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h3 {
    color: #2c1810;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #2c1810, #4a3728);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: #cd853f;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #f5f5dc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

/* FAQ */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c1810;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8b4513;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact */
.contact {
    background: #f5f5dc;
}

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

.contact-info h3, .contact-form h3 {
    color: #2c1810;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #8b4513;
    display: block;
    margin-bottom: 5px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background: #2c1810;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    color: #cd853f;
    margin-bottom: 20px;
}

.footer-section p {
    color: #f5f5dc;
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: #f5f5dc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #cd853f;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.social-links.large a {
    font-size: 2rem;
}

.footer-bottom {
    border-top: 1px solid #4a3728;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #f5f5dc;
    margin: 0;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: #cd853f;
    margin-bottom: 10px;
}

.cookie-content p {
    color: #f5f5dc;
    margin-bottom: 15px;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.cookie-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #2c1810;
    margin-bottom: 20px;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.cookie-category span {
    font-size: 0.9rem;
    color: #666;
}

/* Service Pages */
.service-hero {
    background: linear-gradient(135deg, #2c1810, #4a3728);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.service-hero-content h1 {
    color: #cd853f;
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #f5f5dc;
    margin-bottom: 0;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: block;
}

.service-content {
    padding: 80px 0;
    background: white;
}

.service-content .content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content h2 {
    color: #2c1810;
    font-size: 2rem;
    margin-bottom: 25px;
}

.main-content h3 {
    color: #8b4513;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1.6;
}

.process-steps {
    margin: 30px 0;
}

.step {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

.step h4 {
    color: #2c1810;
    margin-bottom: 10px;
}

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

.sidebar .service-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.sidebar .service-card h3 {
    color: #2c1810;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #8b4513;
}

.sidebar ul {
    list-style: none;
    margin: 15px 0;
}

.sidebar ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #4a3728;
}

.sidebar ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

/* Course Levels */
.course-levels {
    margin: 30px 0;
}

.level {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.level h4 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.level-content h5 {
    color: #2c1810;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.level-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.price {
    text-align: right;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #8b4513;
}

/* Event Types */
.event-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.event-type {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

.event-type h4 {
    color: #2c1810;
    margin-bottom: 15px;
}

.event-type ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.package {
    padding: 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.package:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
}

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

.package ul {
    list-style-type: disc;
    margin: 15px 0 15px 20px;
}

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

.testimonials h2 {
    text-align: center;
    color: #2c1810;
    margin-bottom: 50px;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #4a3728;
}

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

/* Success Stories */
.success-stories {
    background: #f9f9f9;
    padding: 80px 0;
}

/* Related Services */
.related-services {
    background: #f5f5dc;
    padding: 80px 0;
}

.related-services h2 {
    text-align: center;
    color: #2c1810;
    margin-bottom: 50px;
}

/* Roasting Process */
.roasting-process {
    background: white;
    padding: 80px 0;
}

.roasting-process h2 {
    text-align: center;
    color: #2c1810;
    margin-bottom: 50px;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-top: 4px solid #8b4513;
}

.process-step h3 {
    color: #8b4513;
    margin-bottom: 15px;
}

/* Roasting Methods */
.roasting-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.method {
    padding: 25px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
}

.method h4 {
    color: #8b4513;
    margin-bottom: 15px;
}

/* Schedule */
.schedule {
    margin: 20px 0;
}

.session {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.session strong {
    display: block;
    color: #2c1810;
    margin-bottom: 5px;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
    background: white;
}

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

.legal-content h1 {
    color: #2c1810;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #8b4513;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #2c1810;
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.legal-section h4 {
    color: #4a3728;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.legal-section h5 {
    color: #666;
    font-size: 1rem;
    margin: 15px 0 10px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-settings-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

/* Thank You Page */
.thank-you-page {
    padding: 150px 0 80px;
    background: white;
    text-align: center;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
}

.thank-you-content h1 {
    color: #8b4513;
    margin-bottom: 20px;
}

.thank-you-details {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: left;
}

.thank-you-details h2 {
    color: #2c1810;
    margin-bottom: 20px;
    text-align: center;
}

.thank-you-details ul {
    list-style-type: none;
    padding: 0;
}

.thank-you-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.thank-you-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
    font-size: 1.2rem;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    color: #2c1810;
    margin-bottom: 25px;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #2c1810;
}

.service-link:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}

.service-link img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

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

.social-section {
    text-align: center;
}

.social-section h3 {
    color: #2c1810;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .packages {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .roasting-methods {
        grid-template-columns: 1fr;
    }
    
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-content {
        padding: 25px;
        margin: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        padding: 50px 0;
        background: white;
        color: black;
    }
    
    .hero-content h1 {
        color: black;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: black;
        color: white;
        border: 2px solid white;
    }
    
    .service-card {
        border: 2px solid black;
    }
}

/* Focus indicators */
*:focus {
    outline: 2px solid #8b4513;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #8b4513;
    outline-offset: 2px;
}
