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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c4967e;
    color: #ffffff;
}

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

.btn-secondary {
    background: #f5f5f5;
    color: #2d2d2d;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 600;
    color: #c4967e;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

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

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

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #2d2d2d;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    color: #666;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    background: #c4967e;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.intro-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.intro-split-left {
    flex: 0.9;
    background: #e8e5e3;
    overflow: hidden;
}

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

.intro-split-right {
    flex: 1.1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.intro-split-right h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 32px;
    line-height: 1.2;
}

.intro-split-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 60px;
    background: #fafafa;
}

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

.section-header-centered h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 18px;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid-split {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 32px 28px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 14px;
}

.service-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c4967e;
}

.cta-centered {
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: #c4967e;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 12px 32px;
    border: 2px solid #c4967e;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: #c4967e;
    color: #ffffff;
}

.trust-section-split {
    display: flex;
    align-items: stretch;
    min-height: 650px;
}

.trust-content {
    flex: 1.2;
    padding: 80px 70px;
    background: #f4f1ef;
}

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 50px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.trust-image {
    flex: 0.8;
    background: #ddd;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 100px 60px;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #f9f7f5;
    border-radius: 8px;
    border-left: 4px solid #c4967e;
}

.testimonial p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
}

.booking-section {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.booking-split-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f5f3;
}

.booking-split-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.booking-split-left p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.booking-split-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.booking-split-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.appointment-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: #c4967e;
}

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

.btn-submit:hover {
    background: #b38469;
    transform: translateY(-2px);
}

.info-section-split {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.info-content {
    flex: 1.3;
    padding: 60px 70px;
    background: #2d2d2d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.info-image {
    flex: 0.7;
    background: #ddd;
    overflow: hidden;
}

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

.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 60px 30px;
}

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

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

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

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

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

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

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

.footer-column ul li a:hover {
    color: #c4967e;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .trust-section-split,
    .booking-section,
    .info-section-split {
        flex-direction: column;
    }

    .hero-image,
    .intro-split-left,
    .trust-image,
    .info-image {
        min-height: 400px;
    }

    .services-grid-split,
    .testimonials-split {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .section-header-centered h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .hero-content,
    .intro-split-right,
    .trust-content,
    .booking-split-left,
    .booking-split-right,
    .info-content {
        padding: 50px 30px;
    }

    .services-preview {
        padding: 60px 30px;
    }
}