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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3e29;
    --primary-light: #3d7350;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --accent-color: #c67c3a;
    --danger-color: #d32f2f;
    --success-color: #388e3c;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-color);
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(29, 29, 29, 0.95);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    font-family: 'Arial', sans-serif;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: var(--primary-light);
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
        text-align: center;
    }
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-editorial {
    display: flex;
    flex-direction: column;
    padding: 4rem 5% 3rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 2px;
}

.content-block {
    padding: 3rem 5%;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.narrow-text h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.narrow-text h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.narrow-text em {
    font-style: italic;
}

.narrow-text strong {
    font-weight: 600;
}

.narrow-text ul,
.narrow-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.narrow-text li {
    margin-bottom: 0.8rem;
}

.editorial-list {
    list-style-position: outside;
    padding-left: 2rem;
}

.editorial-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-alt);
    font-style: italic;
    font-size: 1.1rem;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

.image-inline {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.image-inline img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.highlight-block {
    background-color: var(--bg-alt);
    padding: 3rem 5%;
}

.cta-inline {
    padding: 3rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-large {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.split-visual {
    padding: 3rem 5%;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.split-text p {
    line-height: 1.7;
    color: var(--text-light);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .split-content {
        flex-direction: column;
    }
}

.testimonial-block {
    padding: 3rem 5%;
    background-color: var(--bg-alt);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.testimonial-author {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
}

.services-preview {
    padding: 4rem 5%;
    background-color: var(--bg-alt);
}

.intro-text {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.service-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Arial', sans-serif;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.btn-submit {
    font-family: 'Arial', sans-serif;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.final-thought {
    padding: 4rem 5%;
}

.cta-final {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-final-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.cta-final-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 968px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    font-family: 'Arial', sans-serif;
    padding: 1rem 1.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #b36b2f;
    transform: translateY(-2px);
}

.page-header {
    padding: 4rem 5% 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-header {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.price-badge {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
}

.featured-price {
    background-color: var(--primary-color);
    color: #ffffff;
}

.service-detail-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-detail-content img {
    flex: 1;
    max-width: 450px;
    border-radius: 4px;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-text h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.service-text p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-text ul,
.service-text ol {
    font-family: 'Arial', sans-serif;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-text li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: var(--text-light);
}

.delivery-time,
.capacity {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin: 1.5rem 0;
}

@media (max-width: 968px) {
    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .service-detail-content img {
        max-width: 100%;
    }
}

.comparison-section {
    padding: 3rem 5%;
    background-color: var(--bg-alt);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.comparison-row {
    display: flex;
}

.comparison-row.header-row {
    background-color: var(--primary-color);
    color: #ffffff;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell.label {
    font-weight: 600;
    background-color: var(--bg-alt);
}

@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
        display: block;
    }

    .comparison-row {
        min-width: 600px;
    }
}

.stats-section {
    padding: 3rem 5%;
    background-color: var(--primary-color);
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.pillars-section {
    padding: 3rem 5%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.pillar {
    flex: 1;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.pillar p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .pillars-section {
        flex-direction: column;
    }
}

.values-section {
    padding: 3rem 5%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: 4px;
}

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

.value-card p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .values-section {
        flex-direction: column;
    }
}

.team-section {
    padding: 3rem 5%;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.role {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
}

.contact-grid {
    padding: 3rem 5%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form-note {
    background-color: var(--bg-alt);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.info-box {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-box.urgent {
    border-left: 4px solid var(--danger-color);
}

.note-small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.8rem;
}

@media (max-width: 968px) {
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

.map-section {
    padding: 3rem 5%;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.map-placeholder {
    max-width: 1100px;
    margin: 0 auto 2rem;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    border-radius: 4px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 4px;
}

.map-overlay p {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: var(--text-color);
}

.directions {
    max-width: 1100px;
    margin: 0 auto;
}

.directions h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.directions ul {
    font-family: 'Arial', sans-serif;
    list-style: none;
    padding: 0;
}

.directions li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-section {
    padding: 3rem 5%;
    background-color: var(--bg-alt);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.faq-item p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-section {
    padding: 4rem 5%;
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--success-color);
    font-weight: 400;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    flex: 1;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
    }
}

.thanks-note {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    text-align: left;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

.while-you-wait {
    text-align: left;
    margin: 3rem 0;
}

.while-you-wait h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.while-you-wait ul {
    font-family: 'Arial', sans-serif;
    list-style-position: inside;
    padding: 0;
}

.while-you-wait li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-reminder {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.contact-reminder h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-reminder p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-page {
    padding-bottom: 3rem;
}

.legal-date {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.legal-intro {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.legal-content p {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    font-family: 'Arial', sans-serif;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: var(--primary-color);
    color: #ffffff;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tbody tr:hover,
.cookies-table tbody tr:hover {
    background-color: var(--bg-alt);
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    body {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .service-cards {
        flex-direction: column;
    }

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