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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #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;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 40px;
    right: 50px;
    left: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.asymmetric-layout {
    margin-top: 120px;
}

.hero-offset {
    position: relative;
    margin-bottom: 100px;
}

.hero-image-block {
    position: relative;
    width: 85%;
    margin-left: 10%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8e4df;
}

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

.hero-overlay {
    position: absolute;
    bottom: -60px;
    left: -80px;
    background-color: #d4a574;
    padding: 50px 60px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-title-offset {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.95;
}

.intro-irregular {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 10%;
    margin-bottom: 80px;
}

.intro-left {
    flex: 1;
    padding-right: 40px;
}

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

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

.intro-right-elevated {
    flex: 1;
    position: relative;
    top: -40px;
}

.intro-right-elevated img {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e8e4df;
}

.services-asymmetric {
    padding: 100px 8%;
    background-color: #f5f3f0;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-offset-right {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
    margin-top: 60px;
}

.card-small-left {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
    margin-left: 5%;
}

.card-wide {
    flex: 1 1 calc(65% - 15px);
    min-width: 350px;
    margin-top: -40px;
}

.card-elevated {
    flex: 1 1 calc(48% - 15px);
    min-width: 320px;
    margin-top: 50px;
}

.card-corner {
    flex: 1 1 calc(52% - 15px);
    min-width: 320px;
}

.service-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8e4df;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

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

.btn-service {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #d4a574;
}

.booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.booking-overlay.active {
    display: flex;
}

.booking-form-container {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-form:hover {
    color: #1a1a1a;
}

.booking-form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    color: #d4a574;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    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;
}

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

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

.trust-block-diagonal {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
    background-color: #1a1a1a;
    color: #fff;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.trust-content-left,
.trust-stats-right {
    transform: skewY(2deg);
}

.trust-content-left {
    flex: 1;
}

.trust-content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.trust-content-left p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.trust-stats-right {
    flex: 1;
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

.disclaimer-section {
    padding: 60px 10%;
    background-color: #f9f8f6;
    margin: 80px 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #d4a574;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 10% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #d4a574;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.email-display {
    color: #ccc;
    font-style: normal;
}

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

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        border-radius: 0;
    }

    .asymmetric-layout {
        margin-top: 0;
    }

    .hero-image-block {
        width: 100%;
        margin-left: 0;
        height: 400px;
    }

    .hero-overlay {
        position: static;
        margin-top: 20px;
    }

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

    .intro-right-elevated {
        top: 0;
    }

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

    .service-card {
        margin: 0 !important;
    }

    .trust-block-diagonal {
        flex-direction: column;
        transform: none;
    }

    .trust-content-left,
    .trust-stats-right {
        transform: none;
    }

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