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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.navigation {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #f4f4f4;
    transition: all 0.3s;
}

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

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 600px;
    line-height: 1.7;
}

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

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 600px;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.services-main {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.service-info {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
}

.select-service {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #333;
    transform: translateX(5px);
}

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

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

.booking-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.booking-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #ccc;
}

.booking-form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

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

.submit-btn:hover {
    background-color: #b8941f;
}

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

.values-split {
    display: flex;
    align-items: center;
}

.values-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.values-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 500px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

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

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

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

.footer-section a:hover {
    color: #d4af37;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    border-color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f8f8f8;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-content .service-chosen {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 30px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background-color: #333;
}

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

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #1a1a1a;
    color: #f4f4f4;
}

.contact-info-side h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 700;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 600;
}

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

.contact-map-side {
    flex: 1;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.map-placeholder {
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #666;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        padding: 30px 40px;
        gap: 20px;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .values-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .services-header h2,
    .intro-text h2,
    .values-text h2,
    .booking-content h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}