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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

a {
    color: #3a7d7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a5d5f;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a7d7f;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3a7d7f;
}

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    border-left: 1px solid #ddd;
    padding-left: 1.5rem;
    font-style: italic;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #3a7d7f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2a5d5f;
}

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

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

.editorial-content {
    background-color: #fafaf8;
}

.hero-editorial {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #d4e5e6;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-text-overlay .lead {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: #444;
}

.content-narrow h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    font-weight: 700;
}

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

.inline-image {
    margin: 3rem 0;
    background-color: #e8e8e6;
}

.inline-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
    background-color: #f5f5f3;
}

.callout-box {
    background-color: #e8f4f4;
    border-left: 4px solid #3a7d7f;
    padding: 2rem;
    margin: 2.5rem 0;
}

.callout-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.callout-box ul {
    list-style-position: inside;
    padding-left: 0;
}

.callout-box li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.reference {
    color: #3a7d7f;
    font-weight: 600;
    font-size: 0.9rem;
}

.reference:hover {
    text-decoration: underline;
}

.services-inline {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #d4e5e6;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    margin-bottom: 1rem;
    text-align: left;
}

.service-duration,
.service-price {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.3rem;
    color: #3a7d7f;
}

.btn-service {
    background-color: #3a7d7f;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2a5d5f;
}

.testimonial-block {
    background-color: #f9f9f7;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 5px solid #3a7d7f;
}

.testimonial-block blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #444;
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.form-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 4rem 0;
}

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

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c2c2c;
}

.selected-service-info {
    background-color: #e8f4f4;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.selected-service-info p {
    margin-bottom: 0.5rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a7d7f;
}

.btn-submit {
    background-color: #3a7d7f;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2a5d5f;
}

.disclaimer-box {
    background-color: #fff8e6;
    border: 1px solid #f0c020;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.references-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f3;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list a {
    color: #3a7d7f;
    word-break: break-word;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

.page-content {
    min-height: 60vh;
}

.page-hero {
    background: linear-gradient(135deg, #3a7d7f 0%, #2a5d5f 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.service-detailed {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: #d4e5e6;
}

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

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.service-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style-position: inside;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.7rem;
    color: #555;
}

.price-display {
    font-size: 1.3rem;
    margin: 1.5rem 0;
    color: #3a7d7f;
}

.price-display strong {
    font-size: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3a7d7f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2a5d5f;
}

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

.btn-secondary:hover {
    background-color: #3a7d7f;
    color: #ffffff;
}

.info-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: #f5f5f3;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c2c2c;
}

.info-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-col {
    flex: 1;
    min-width: 280px;
}

.info-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3a7d7f;
}

.info-col ul {
    list-style-position: inside;
    padding-left: 0;
}

.info-col li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.about-story {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-content {
    flex: 1.5;
    min-width: 300px;
}

.story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
}

.story-content h2:first-child {
    margin-top: 0;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: justify;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #d4e5e6;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.member-role {
    font-size: 0.95rem;
    color: #3a7d7f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: #f5f5f3;
}

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

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #3a7d7f;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.contact-info-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a7d7f;
}

.contact-block p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.email-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e6;
    padding: 2rem;
    border-radius: 4px;
}

.map-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.map-notice p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3a7d7f;
}

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

.thanks-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #3a7d7f;
    margin-bottom: 1.5rem;
}

.thanks-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-info {
    text-align: left;
    margin: 2.5rem 0;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-steps {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-note {
    background-color: #f5f5f3;
    padding: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.email-inline {
    font-weight: 600;
    color: #3a7d7f;
}

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

.legal-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
}

.legal-section {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legal-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3a7d7f;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #3a7d7f;
    color: #ffffff;
}

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

.cookies-table th {
    font-weight: 600;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #f5f5f3;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding-top: 1rem;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-text-overlay .lead {
        font-size: 1rem;
    }

    .content-narrow {
        padding: 1rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

    .service-detailed:nth-child(even) {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-content {
        padding: 2rem 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .service-info h2 {
        font-size: 1.5rem;
    }
}