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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container-wide {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2d5f3f;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,95,63,0.85), rgba(44,62,80,0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-hero,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary,
.btn-hero {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-primary:hover,
.btn-hero:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,95,63,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-primary-large {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45,95,63,0.3);
}

.cookie-banner .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.cookie-banner .btn-secondary {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-color: #ffffff;
    color: #ffffff;
}

.cookie-banner .btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Intro Block */
.intro-block {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Preview */
.services-preview {
    padding: 120px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    padding: 0 25px 15px 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
}

.link-arrow {
    padding: 15px 25px 25px 25px;
    color: #2d5f3f;
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-section p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.95;
    text-align: center;
}

/* Benefits Block */
.benefits-block {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2d5f3f;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2d5f3f;
}

/* Location Info */
.location-info {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.location-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.location-text .btn-secondary {
    margin-top: 10px;
}

.location-image {
    flex: 1;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Final */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d5f3f, #234a31);
    color: #ffffff;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background-color: #1a2836;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.footer-col p {
    color: #b0b8c0;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: #b0b8c0;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #7a8790;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #2d5f3f, #234a31);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.pricing-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2d5f3f;
}

.pricing-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 5px;
}

.pricing-box .price-note {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.feature-list {
    margin: 25px 0;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #2c3e50;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-variants {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-variants p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.price-variants p:last-child {
    margin-bottom: 0;
}

/* Pricing Notes */
.pricing-notes {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-notes h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Services */
.cta-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5f3f, #234a31);
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 400;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
}

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

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.team-approach {
    max-width: 800px;
    margin: 0 auto;
}

.team-approach p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.sustainability-note {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.sustainability-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.sustainability-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5f3f, #234a31);
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-block a {
    color: #2d5f3f;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-block .note {
    font-size: 0.9rem;
    color: #7a8790;
    font-style: italic;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.9), transparent);
    padding: 20px;
    color: #ffffff;
}

.directions-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.directions-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.directions-info p {
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.emergency-contact {
    padding: 60px 0;
    background-color: #ffffff;
}

.emergency-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
}

.emergency-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #856404;
}

.emergency-box p {
    color: #856404;
    line-height: 1.7;
}

.cta-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5f3f, #234a31);
    color: #ffffff;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thank-you-content {
    text-align: center;
}

.checkmark-icon {
    margin: 0 auto 30px auto;
}

.thank-you-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thank-you-content .lead-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.next-steps {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style-position: inside;
}

.next-steps ul li {
    padding: 10px 0;
    color: #5a6c7d;
    line-height: 1.7;
    list-style-type: disc;
}

.contact-reminder {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #ffc107;
}

.contact-reminder p {
    margin-bottom: 10px;
    color: #856404;
}

.contact-reminder p:last-child {
    margin-bottom: 0;
}

.contact-reminder a {
    color: #856404;
    font-weight: 600;
    text-decoration: underline;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.95rem;
    color: #7a8790;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234a31;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-split,
    .location-split,
    .service-detail,
    .story-block,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail.reverse,
    .story-block.reverse {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text h2,
    .location-text h2,
    .story-content h2 {
        font-size: 1.8rem;
    }

    .benefits-layout {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cta-final h2,
    .cta-services h2,
    .cta-about h2,
    .cta-contact h2 {
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2.2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container,
    .container-wide,
    .container-narrow {
        width: 95%;
        padding: 0 15px;
    }

    .hero-section {
        min-height: 500px;
        padding: 60px 15px;
    }

    .intro-block,
    .services-preview,
    .philosophy-section,
    .benefits-block,
    .testimonial-section,
    .location-info,
    .cta-final {
        padding: 60px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-hero,
    .btn-primary-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .legal-page {
        padding: 40px 0 60px 0;
    }

    .legal-page h1 {
        font-size: 2.2rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}
