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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 24px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 64px;
}

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

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

.header-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px 0;
    text-align: center;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.story-section {
    margin: 64px 0;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.story-section h2 {
    font-size: 32px;
    margin: 56px 0 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image {
    margin: 48px 0;
    background-color: #f8f9fa;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 16px;
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #2980b9;
}

.services-preview {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.section-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 56px;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: row;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card-image {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 8px 0 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #2980b9;
}

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

.booking-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.booking-section > .content-narrow > p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce1e6;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-primary {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 56px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 1000;
    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: 24px;
}

.cookie-content p {
    font-size: 15px;
    color: #2c3e50;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: none;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.page-content {
    max-width: 960px;
    margin: 64px auto;
    padding: 0 24px;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #34495e;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.page-content ul,
.page-content ol {
    margin: 16px 0 16px 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-content li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 32px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.contact-info .email-display {
    color: #2c3e50;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 36px;
    }

    .lead-text {
        font-size: 18px;
    }

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

    .card-image {
        flex: 0 0 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }
}