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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

.btn-accept:hover {
    background: #c09560;
}

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.intro-section {
    padding: 100px 40px;
    background: #fff;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
    border-radius: 8px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-showcase {
    padding: 100px 40px;
    background: #f5f1ed;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-visual {
    width: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.btn-select-service {
    padding: 12px 24px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a1a1a;
}

.booking-section-split {
    padding: 100px 40px;
    background: #fff;
}

.booking-section-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.booking-left {
    flex: 1;
}

.booking-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-left p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.service-display {
    padding: 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #666;
    font-size: 15px;
}

.service-display.selected {
    color: #2c2c2c;
    font-weight: 600;
    border-color: #d4a574;
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 40px;
    background: #2c2c2c;
    color: #fff;
}

.trust-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 34px;
    margin-bottom: 24px;
}

.trust-content-centered p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.citation {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer-inline {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #d4a574;
    font-size: 14px;
    text-align: left;
}

.main-footer {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 60px 40px 30px;
}

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

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

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

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

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 10px;
    font-size: 13px;
}

.references li a {
    color: #b5b5b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references li a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.disclaimer-footer {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.6;
}

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

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

    .intro-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        width: 100%;
        min-height: 200px;
    }

    .booking-section-split {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 16px;
        flex-wrap: wrap;
    }
}