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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

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

.main-nav {
    background-color: #2d4a3e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3d5a4d;
    color: #fff;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.cta-primary:hover {
    background-color: #2d4a3e;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3d5a4d;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 17px;
    border: 2px solid #3d5a4d;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-secondary:hover {
    background-color: #3d5a4d;
    color: #fff;
}

.trust-strip {
    background-color: #2d4a3e;
    padding: 32px 0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

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

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

.intro-section {
    padding: 100px 0;
    background-color: #fff;
}

.intro-section h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.services-grid {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 320px;
    max-width: 420px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 260px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-price {
    padding: 0 24px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #3d5a4d;
}

.select-service {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 14px;
    background-color: #3d5a4d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2d4a3e;
}

.testimonial-inline {
    padding: 80px 0;
    background-color: #2d4a3e;
    color: #fff;
}

.testimonial-inline blockquote {
    border-left: 4px solid #5a7d6f;
    padding-left: 32px;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 17px;
    font-style: normal;
    opacity: 0.85;
}

.form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.form-left-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-left-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3d5a4d;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.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 #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    padding: 16px;
    background-color: #3d5a4d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us {
    padding: 100px 0;
    background-color: #fff;
}

.why-us h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.reasons-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1 1 300px;
    max-width: 400px;
}

.reason-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #b0b0b0;
}

.disclaimer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #3d5a4d;
    color: #fff;
}

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

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

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

.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.page-hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    text-align: center;
    max-width: 900px;
    line-height: 1.2;
}

.page-header {
    padding: 80px 0 60px;
    background-color: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
    background-color: #fff;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-content {
    flex: 1;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background-color: #fff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 35px);
    min-width: 300px;
    max-width: 500px;
    padding: 35px;
    background-color: #fafafa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.stats-section {
    padding: 80px 0;
    background-color: #2d4a3e;
    color: #fff;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 100px 0;
    background-color: #fff;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-tag {
    display: inline-block;
    background-color: #3d5a4d;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-right h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-right ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-detail-right ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.booking-info {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.booking-info h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3d5a4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-content {
    padding: 100px 0;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #3d5a4d;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.faq-item {
    flex: 1 1 calc(50% - 35px);
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #3d5a4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thanks-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: #3d5a4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-note {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #3d5a4d;
}

.thanks-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.legal-page {
    padding: 100px 0;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3d5a4d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2d4a3e;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        height: 400px;
    }

    .split-reverse,
    .team-split,
    .container-split,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .hero-left p {
        font-size: 17px;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

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

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

    .page-header h1 {
        font-size: 36px;
    }
}