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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #0f2638;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section {
    padding: 90px 0;
    background-color: var(--white);
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
}

.split-reverse,
.split-standard {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.service-item {
    padding: 25px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonial-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-section blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

.testimonial-section cite {
    display: block;
    margin-top: 25px;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.booking-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.booking-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.booking-form button[type="submit"] {
    width: 100%;
    margin-top: 15px;
}

.additional-services {
    padding: 90px 0;
    background-color: var(--white);
}

.additional-services h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 21px;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 20px 15px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 20px 20px;
    display: block;
}

.footer {
    background-color: var(--bg-dark);
    color: #c0c0c0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.values-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 35px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--shadow);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-section {
    padding: 90px 0;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.team-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-roles {
    display: flex;
    gap: 30px;
}

.role-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.role-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.role-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 90px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail {
    padding: 70px 0;
}

.service-detail-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    min-height: 550px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-includes {
    margin: 25px 0;
    padding: 25px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-includes ul {
    margin-left: 20px;
}

.service-includes ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin: 25px 0;
}

.additional-services-page {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.additional-services-page h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.additional-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.additional-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.additional-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    flex: 1;
}

.additional-item .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.faq-section {
    padding: 90px 0;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-section {
    padding: 70px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-block .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.service-area h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-area > .container > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.area-list {
    display: flex;
    gap: 50px;
}

.area-col {
    flex: 1;
}

.area-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.area-col ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.area-col ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.appointment-section {
    padding: 90px 0;
    background-color: var(--white);
}

.appointment-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.appointment-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.checklist {
    margin: 25px 0;
    list-style: none;
}

.checklist li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.workshop-visit {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.workshop-visit h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.workshop-visit p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--primary-color);
}

.thanks-content h2 {
    font-size: 32px;
    margin: 50px 0 30px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    flex: 1;
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 70px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 25px 25px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .service-detail-content {
        padding: 50px 40px;
    }

    .hero-image,
    .split-image,
    .service-detail-image {
        min-height: 350px;
    }

    .values-grid,
    .team-roles,
    .next-steps {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .contact-layout,
    .area-list {
        flex-direction: column;
    }

    .nav-split {
        padding: 20px 30px;
    }

    .nav-right {
        gap: 20px;
    }
}

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .container,
    .container-narrow {
        padding: 0 25px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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