* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.hero-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.services-preview-split {
    padding: 3rem 0;
}

.service-card-large {
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.trust-section {
    padding: 5rem 3rem;
    background-color: #ecf0f1;
}

.trust-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.trust-features {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1;
    text-align: left;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    color: #546e7a;
}

.booking-section {
    padding: 5rem 3rem;
}

.form-split-layout {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.form-info-left {
    flex: 1;
}

.form-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-info-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.form-image-block {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.form-container-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.additional-services {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.services-grid-alternate {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.service-small {
    flex: 1;
}

.service-small img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.service-small h3 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem 0;
    color: #2c3e50;
}

.service-small p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1rem;
}

.final-cta-section {
    padding: 5rem 3rem;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.footer-main {
    background-color: #34495e;
    color: white;
    padding: 3rem 3rem 1rem 3rem;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #546e7a;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.page-hero-split {
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.content-section-split {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.content-left-wide {
    flex: 2;
}

.content-left-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-left-wide p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.content-right-narrow {
    flex: 1;
}

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #546e7a;
}

.facts-list li:last-child {
    border-bottom: none;
}

.team-section {
    padding: 5rem 3rem;
    background-color: #ecf0f1;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro p {
    font-size: 1.1rem;
    color: #546e7a;
}

.team-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.team-member-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.member-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.member-info p {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.6;
}

.values-section-alternate {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

.value-block-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.value-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.certifications-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.cert-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cert-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cert-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.cert-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.cert-item {
    flex: 1;
    text-align: left;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.cert-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.cert-item p {
    font-size: 0.95rem;
    color: #546e7a;
}

.services-full-section {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing-box {
    margin-top: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.btn-book {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.additional-info-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.info-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.info-blocks-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 250px;
    text-align: left;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.6;
}

.contact-info-section {
    padding: 5rem 3rem;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail-block {
    margin-bottom: 2.5rem;
}

.contact-detail-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-detail-block p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-image-right {
    flex: 1;
}

.contact-visual {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.btn-contact {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.faq-section {
    padding: 5rem 3rem;
    background-color: #ecf0f1;
}

.faq-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 3rem;
    min-height: 500px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem auto;
}

.thanks-content-centered h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.thanks-info-box {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    background-color: white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-selected-service {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.additional-info-thanks {
    padding: 5rem 3rem;
    background-color: #ecf0f1;
}

.info-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-centered p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.prep-tips {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.tip {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.tip h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tip p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.legal-page-section {
    padding: 5rem 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #546e7a;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-image-right {
        min-height: 300px;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .trust-features {
        flex-direction: column;
    }

    .form-split-layout {
        flex-direction: column;
    }

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

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

    .content-section-split {
        flex-direction: column;
    }

    .team-grid-split {
        flex-direction: column;
    }

    .values-section-alternate {
        flex-direction: column;
    }

    .value-image-right {
        min-height: 300px;
    }

    .cert-list {
        flex-direction: column;
    }

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

    .service-detail-image {
        min-height: 300px;
    }

    .info-blocks-grid {
        flex-direction: column;
    }

    .contact-layout-split {
        flex-direction: column;
    }

    .prep-tips {
        flex-direction: column;
    }

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