* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #d4a574;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f5f3f0;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.hero-right {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #2c2c2c;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.split-container-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
}

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

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image-right {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-left {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-content-left h2,
.split-content-right h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-quick-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-item-quick {
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #d4a574;
}

.service-item-quick h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-item-quick p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.service-item-quick .price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #d4a574;
}

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

.booking-form {
    margin-top: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
}

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

.btn-submit:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

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

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

.container-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.why-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: #4a4a4a;
}

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

.about-content {
    background-color: #ffffff;
}

.philosophy-section {
    background-color: #f9f9f9;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 36px 28px;
    background-color: #f5f3f0;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-item:nth-child(even) {
    background-color: #fafafa;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-service:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

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

.cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 36px;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 36px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #d4a574;
}

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

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

.directions-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: #1a1a1a;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.direction-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.thanks-section {
    padding: 120px 0;
    background-color: #f5f3f0;
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 48px;
    border-left: 4px solid #d4a574;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2c2c2c;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 48px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

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

.legal-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e5e5;
}

.container-legal h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.container-legal h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.container-legal ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.container-legal a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container-legal a:hover {
    color: #c49563;
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #999;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #f9f9f9;
}

.gdpr-table thead,
.cookie-table thead {
    background-color: #2c2c2c;
    color: #ffffff;
}

.gdpr-table th,
.cookie-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.gdpr-table td,
.cookie-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    color: #4a4a4a;
}

.gdpr-table tbody tr:hover,
.cookie-table tbody tr:hover {
    background-color: #f0f0f0;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    background-color: #0f0f0f;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

    .hero-left,
    .hero-right,
    .split-content-left,
    .split-content-right,
    .split-image-left,
    .split-image-right {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .container-header {
        padding: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .why-grid,
    .values-grid,
    .directions-grid {
        flex-direction: column;
    }
}

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

    .split-content-left h2,
    .split-content-right h2 {
        font-size: 32px;
    }

    .container-full h2,
    .page-hero h1 {
        font-size: 34px;
    }

    .container-full,
    .container {
        padding: 0 24px;
    }

    .split-content-left,
    .split-content-right {
        padding: 40px 24px;
    }

    .footer-container {
        padding: 0 24px 40px;
        gap: 40px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}