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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.main-article {
    max-width: 100%;
}

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

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #ecf0f1;
    font-style: italic;
}

.article-section {
    padding: 60px 20px;
}

.article-section.alternate-bg {
    background-color: #f8f9fa;
}

.section-content {
    margin: 0 auto;
}

.section-content.narrow {
    max-width: 680px;
}

.article-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.article-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.article-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
    object-fit: cover;
}

.testimonial {
    margin: 30px 0;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.service-list {
    margin-top: 40px;
}

.service-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #ecf0f1;
}

.alternate-bg .service-item {
    background-color: #ffffff;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.cta-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #ecf0f1;
}

.booking-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-group input:disabled {
    background-color: #ecf0f1;
    color: #7f8c8d;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #bdc3c7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-service {
    font-weight: 700;
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-details {
    max-width: 680px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 25px;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 10px;
}

.contact-info .email-display {
    color: #34495e;
    font-weight: 600;
}

.page-header {
    max-width: 680px;
    margin: 50px auto 30px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-content {
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 15px;
}

.page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 680px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #ecf0f1;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
}

.service-card .service-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 28px;
    }

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

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