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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
}

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

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

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

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

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

.main-nav {
    background: #1a1a1a;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

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

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

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

.hero-asymmetric {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-offset-block {
    position: relative;
    height: 600px;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: #333;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 500px;
    background: rgba(212, 175, 55, 0.95);
    padding: 60px 50px;
    z-index: 10;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #000;
    transform: translateX(5px);
}

.intro-offset {
    padding: 120px 60px;
    background: #fff;
}

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

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

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.intro-image-stack {
    flex: 1;
    background: #e8e8e8;
}

.intro-image-stack img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.services-header-offset {
    max-width: 600px;
    margin-left: 120px;
    margin-bottom: 60px;
}

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

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

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

.service-card {
    display: flex;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.offset-left {
    margin-left: 0;
    margin-right: 200px;
}

.offset-right {
    margin-left: 200px;
    margin-right: 0;
}

.offset-center {
    margin-left: 100px;
    margin-right: 100px;
}

.offset-left-small {
    margin-left: 50px;
    margin-right: 150px;
}

.offset-right-small {
    margin-left: 150px;
    margin-right: 50px;
}

.service-image {
    flex: 1;
    background: #ddd;
}

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

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

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

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

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

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

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

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

.form-container-offset {
    max-width: 700px;
    margin-left: 150px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background: #f9f9f9;
    padding: 50px;
}

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

.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: 2px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.submit-btn:hover {
    background: #1a1a1a;
    color: #d4af37;
}

.trust-block {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.main-footer {
    background: #0d0d0d;
    color: #aaa;
    padding: 60px 60px 30px;
}

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

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

.footer-block p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

.footer-block ul li a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #1a1a1a;
    border-left: 4px solid #d4af37;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image-wrap {
        width: 100%;
    }

    .hero-text-overlay {
        position: relative;
        left: 0;
        transform: none;
        margin: 20px;
    }

    .intro-grid,
    .trust-grid,
    .footer-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .services-header-offset {
        margin-left: 0;
    }
}