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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

.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;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #333;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

.header-left {
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.ad-notice {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d4a574;
    border: 1px solid #d4a574;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

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

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

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #2c2c2c;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.8;
}

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

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

.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

.intro-narrow p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    background-color: #f5f5f5;
}

.service-card-split {
    display: flex;
    min-height: 450px;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #fff;
}

.service-card-split.reverse .service-info {
    background-color: #fafafa;
}

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

.service-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
}

.feature-split {
    display: flex;
    min-height: 500px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #1a1a1a;
    color: #fff;
}

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 20px;
}

.feature-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.additional-services {
    padding: 80px 40px;
    background-color: #fff;
}

.additional-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-mini {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.service-mini h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-mini p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
    color: #fff;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e0e0;
}

.booking-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 40px;
    background-color: #f5f5f5;
    text-align: center;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d4a574;
}

.footer-column p {
    font-size: 14px;
    color: #aaa;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

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

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

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

    .hero-split,
    .service-card-split,
    .feature-split,
    .booking-container {
        flex-direction: column;
    }

    .hero-content,
    .service-info,
    .feature-content {
        padding: 40px 20px;
    }

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

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