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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    display: flex;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    z-index: 1000;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 30px;
    width: 220px;
    height: calc(100vh - 30px);
    background: #1a1a1a;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 24px;
}

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

.nav-links a:hover {
    color: #fff;
}

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

.nav-footer a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-footer a:hover {
    color: #b8b8b8;
}

.main-content {
    margin-left: 220px;
    width: calc(100% - 220px);
    margin-top: 30px;
}

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

.hero-text-block {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #333;
}

.hero-image-offset {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #d4d4d4;
}

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

.intro-statement {
    padding: 100px 60px;
    background: #fff;
}

.statement-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.statement-text {
    font-size: 26px;
    line-height: 1.6;
    color: #2c2c2c;
    text-align: center;
    font-weight: 300;
}

.philosophy-split {
    display: flex;
    align-items: center;
    padding: 0;
}

.philosophy-content {
    width: 50%;
    padding: 80px 70px;
    background: #1a1a1a;
    color: #fff;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d4d4d4;
}

.philosophy-image {
    width: 50%;
    overflow: hidden;
    background: #b8b8b8;
}

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

.services-grid {
    padding: 100px 60px;
    background: #f5f5f5;
}

.services-heading {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
}

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

.service-card {
    width: calc(33.333% - 27px);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #d4d4d4;
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-select {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #333;
}

.booking-form-section {
    padding: 100px 60px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 50px;
    color: #5a5a5a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #d4d4d4;
    background: #fff;
    color: #2c2c2c;
    font-family: inherit;
}

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

.form-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #333;
}

.why-us-asymmetric {
    display: flex;
    align-items: stretch;
    background: #f8f8f8;
}

.why-content-block {
    width: 55%;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.why-list {
    list-style: none;
    margin-bottom: 40px;
}

.why-list li {
    font-size: 17px;
    padding: 16px 0;
    border-bottom: 1px solid #d4d4d4;
    color: #2c2c2c;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.why-image-overlap {
    width: 45%;
    overflow: hidden;
    background: #b8b8b8;
}

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

.disclaimer-section {
    padding: 60px;
    background: #e8e8e8;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.footer-main {
    background: #1a1a1a;
    color: #b8b8b8;
    padding: 80px 60px 30px 280px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 80px 60px;
    text-align: center;
    background: #f8f8f8;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-service {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.contact-page {
    display: flex;
    min-height: calc(100vh - 30px);
}

.contact-info {
    width: 50%;
    padding: 80px 70px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #b8b8b8;
    font-weight: 600;
}

.contact-item p {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

.contact-map {
    width: 50%;
    background: #d4d4d4;
}

.about-hero {
    padding: 100px 60px;
    background: #f8f8f8;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.about-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #d4d4d4;
    margin: 60px 0;
}

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 180px;
    }

    .main-content {
        margin-left: 180px;
        width: calc(100% - 180px);
    }

    .footer-main {
        padding-left: 200px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-offset {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .footer-main {
        padding-left: 60px;
    }

    .service-card {
        width: 100%;
    }

    .philosophy-split,
    .why-us-asymmetric,
    .contact-page {
        flex-direction: column;
    }

    .philosophy-content,
    .philosophy-image,
    .why-content-block,
    .why-image-overlap,
    .contact-info,
    .contact-map {
        width: 100%;
    }
}