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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-white);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #d4c4b0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.philosophy-section {
    display: flex;
    min-height: 70vh;
}

.philosophy-image {
    flex: 1;
    background-color: #c8baa8;
}

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

.philosophy-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: var(--bg-white);
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.services-overview {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 1.5rem 1.5rem;
}

.appointment-section {
    display: flex;
    min-height: 80vh;
    background-color: var(--bg-white);
}

.appointment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.appointment-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.appointment-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.appointment-visual {
    flex: 1;
    background-color: #bfb3a2;
}

.appointment-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.expertise-section {
    padding: 6rem 8%;
    background-color: var(--primary-color);
}

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

.expertise-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
    font-weight: 700;
}

.expertise-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

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

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

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

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    color: var(--bg-white);
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--accent-color);
}

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

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

.about-hero {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    display: flex;
    min-height: 70vh;
}

.story-image {
    flex: 1;
    background-color: #cbbfb0;
}

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

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.values-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    display: flex;
    min-height: 70vh;
    background-color: var(--bg-light);
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.team-image {
    flex: 1;
    background-color: #d0c2b3;
}

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

.approach-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.approach-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.services-hero {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.service-detail-section {
    display: flex;
    min-height: 75vh;
    background-color: var(--bg-white);
}

.service-detail-section.alt {
    background-color: var(--bg-light);
}

.service-detail {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-image {
    flex: 1;
    background-color: #c5b8a7;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-includes {
    list-style: none;
    margin-top: 2rem;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-cta {
    padding: 6rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.services-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.contact-hero {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-info-section {
    display: flex;
    min-height: 70vh;
    background-color: var(--bg-white);
}

.contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.contact-card h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: #ccc0b0;
}

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

.visit-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.visit-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.visit-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.visit-text {
    flex: 1;
}

.visit-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.visit-image {
    flex: 1;
    background-color: #c9bdb0;
}

.visit-image img {
    width: 100%;
    border-radius: 8px;
}

.directions-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.directions-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.directions-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.direction-option {
    flex: 1;
    min-width: 300px;
}

.direction-option h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.direction-option p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.appointment-reminder {
    padding: 6rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.appointment-reminder h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.appointment-reminder p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.thanks-hero {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 3rem;
}

.thanks-details h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.thanks-info h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.preparation-tips {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tip {
    flex: 1;
    min-width: 280px;
}

.tip h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.tip p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-location {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.location-reminder {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.location-reminder h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.location-reminder p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thanks-cta {
    padding: 6rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .philosophy-section,
    .story-section,
    .team-section,
    .appointment-section,
    .contact-info-section,
    .service-detail-section {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

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

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

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