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

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-header-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.subtitle {
    font-size: 20px;
    color: #6a6a6a;
    font-style: italic;
    line-height: 1.5;
}

.article-body {
    font-size: 18px;
    color: #2c2c2c;
}

.intro-section {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-body h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 35px 0 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.article-body section {
    margin-bottom: 55px;
}

.content-with-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.inline-image-left,
.inline-image-right {
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.inline-image-left img,
.inline-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-content {
    flex: 1;
}

.full-width-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 60px 0;
}

.cta-inline {
    background-color: #f5f5f5;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #2c2c2c;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.cta-button.secondary:hover {
    background-color: #f5f5f5;
}

.services-intro {
    margin: 60px 0;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    font-weight: 700;
    color: #2c2c2c;
    font-size: 18px;
    margin: 20px 25px 10px;
}

.select-service {
    display: inline-block;
    margin: 15px 25px 25px;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.more-services-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.more-services-note a {
    color: #2c2c2c;
    font-weight: 600;
}

.booking-section {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.booking-section h2 {
    margin-top: 0;
}

.inquiry-form {
    margin-top: 35px;
}

.selected-service-display {
    background-color: #e8f4e8;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 3px;
    border-left: 4px solid #4a7c4a;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
}

#serviceName {
    color: #2c5c2c;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.submit-button {
    padding: 14px 36px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

.closing-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 30px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #3a3a3a;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    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-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-btn.accept:hover {
    background-color: #e8e8e8;
}

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

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

.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-detailed .service-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

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

.service-info h2 {
    margin-top: 0;
}

.service-features {
    background-color: #f5f5f5;
    padding: 25px 30px;
    margin: 25px 0;
    border-left: 3px solid #2c2c2c;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 20px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-details {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-note {
    background-color: #f5f5f5;
    padding: 25px;
    margin-top: 40px;
    border-radius: 3px;
}

.contact-image {
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

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

.additional-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.transport-list {
    margin: 20px 0 20px 30px;
}

.transport-list li {
    margin-bottom: 10px;
}

.thanks-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #5a5a5a;
}

.service-confirmation {
    background-color: #e8f4e8;
    padding: 25px;
    margin: 30px 0;
    border-radius: 3px;
    border-left: 4px solid #4a7c4a;
}

.selected-service-info {
    font-size: 18px;
    margin: 0;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.steps-list {
    margin-left: 20px;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

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

.contact-reminder {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 16px;
    color: #6a6a6a;
}

.thanks-image {
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

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

.legal-page .article-body {
    font-size: 16px;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.legal-content th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.team-section,
.values-section,
.cta-section {
    margin: 50px 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .content-with-image {
        flex-direction: row;
    }

    .inline-image-left,
    .inline-image-right {
        width: 45%;
        flex-shrink: 0;
    }

    .content-with-image.reverse {
        flex-direction: row-reverse;
    }

    .services-detailed .service-block {
        flex-direction: row;
    }

    .services-detailed .service-block.reverse {
        flex-direction: row-reverse;
    }

    .service-image {
        width: 45%;
        flex-shrink: 0;
    }

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

    .contact-image {
        width: 45%;
        flex-shrink: 0;
    }

    .thanks-container {
        flex-direction: row;
    }

    .thanks-image {
        width: 40%;
        flex-shrink: 0;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .article-header-text h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .article-body {
        font-size: 17px;
    }

    .article-body h2 {
        font-size: 26px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}