/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.75;
}

/* Header Split Layout */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B5D52;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #6B5D52;
    opacity: 1;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5rem;
    background-color: #f5f3f0;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6B5D52;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #554a42;
    opacity: 1;
}

/* Intro Section Split */
.intro-section {
    padding: 5rem 3rem;
    background-color: #fff;
}

.intro-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid #6B5D52;
    color: #6B5D52;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #6B5D52;
    color: #fff;
    opacity: 1;
}

/* Services Section */
.services-section {
    padding: 5rem 3rem;
    background-color: #f9f8f6;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #6B5D52;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #554a42;
}

/* Form Section Split */
.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-left {
    flex: 1;
    padding: 4rem;
    background-color: #f5f3f0;
}

.form-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.form-left p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #6B5D52;
    font-weight: 700;
}

.form-right {
    flex: 1;
    padding: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #6B5D52;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Trust Section */
.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 3rem;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.trust-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

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

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

/* Footer Split */
.footer-split {
    background-color: #2c2c2c;
    color: #fff;
    padding: 4rem 3rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    opacity: 1;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: #a0a0a0;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #6B5D52;
    color: #fff;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 5rem 3rem 3rem;
    text-align: center;
    background-color: #f5f3f0;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

/* Services Detail Section */
.services-detail-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

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

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

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

.price-highlight {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6B5D52;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6B5D52;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f5f3f0;
    border-left: 4px solid #6B5D52;
    font-size: 0.95rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #6B5D52;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fff;
    color: #6B5D52;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #f5f3f0;
    opacity: 1;
}

/* About Page */
.about-split-section {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.about-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

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

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

.philosophy-section {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 3rem;
}

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

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

.philosophy-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
}

.process-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    background-color: #f9f8f6;
    border-radius: 10px;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6B5D52;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

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

.expertise-split {
    display: flex;
    gap: 4rem;
}

.expertise-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.expertise-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

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

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

/* Contact Page */
.contact-page-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contact-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #6B5D52;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f5f3f0;
    border-left: 4px solid #6B5D52;
    border-radius: 6px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.directions-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.directions-split {
    display: flex;
    gap: 4rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.directions-content {
    flex: 1;
    padding: 3rem;
}

.directions-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.directions-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.directions-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.directions-content ul {
    list-style: none;
    padding-left: 0;
}

.directions-content ul li {
    padding: 0.5rem 0;
    color: #555;
}

.directions-image {
    flex: 1;
    overflow: hidden;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f3f0;
    border-radius: 6px;
}

.service-confirmation p {
    font-size: 1rem;
    color: #555;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c2c2c;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-num {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-color: #6B5D52;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6B5D52;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #554a42;
    opacity: 1;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem 4rem;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #6B5D52;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #554a42;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-section,
    .about-split-section,
    .philosophy-section,
    .expertise-split,
    .directions-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .contact-details {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header-centered h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .header-split {
        padding: 1rem 1.5rem;
    }

    .hero-left,
    .form-left,
    .form-right {
        padding: 2rem;
    }

    .services-section,
    .intro-section {
        padding: 3rem 1.5rem;
    }
}
