* {
    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: #2c2c2c;
    background: #ffffff;
}

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

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

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

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

.header {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-notice {
    font-size: 11px;
    color: #a0a0a0;
    padding: 4px 12px;
    border: 1px solid #444;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffffff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f8f8;
}

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

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d0d0d0;
}

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

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 0;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
    background: #e8e8e8;
}

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

.link-arrow {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-preview {
    padding: 100px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    height: 280px;
    background: #e0e0e0;
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    font-weight: 700;
}

.service-card p {
    padding: 0 20px 15px;
    color: #555;
    font-size: 16px;
}

.price {
    padding: 0 20px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #333;
}

.philosophy-section {
    padding: 100px 0;
}

.booking-section {
    padding: 100px 0;
    background: #f0f0f0;
}

.booking-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.appointment-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f8f8;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background: #e8e8e8;
}

.btn-cookie-alt {
    padding: 10px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: #f8f8f8;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
}

.content-section {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-item p {
    color: #555;
    font-size: 16px;
}

.team-section {
    padding: 80px 0;
}

.approach-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.service-price-tag {
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #1a1a1a;
}

.service-detail-image {
    flex: 1;
    background: #e8e8e8;
    max-height: 500px;
}

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

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

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

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background: #e8e8e8;
}

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

.directions-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.directions-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.directions-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    text-align: center;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.booking-summary {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.booking-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.booking-summary p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2c2c2c;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

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

.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

    .hero-text {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

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

    .nav {
        width: 100%;
        justify-content: center;
    }
}