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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 0 8%;
    background: #fff;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    transform: translateY(-30px);
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #d4691a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateX(20px);
    background-color: #e8e8e8;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 8%;
    gap: 80px;
    background: #f9f9f9;
}

.intro-block {
    flex: 1.2;
    transform: translateY(20px);
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.services-showcase {
    padding: 120px 8% 100px;
    background: #fff;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    transform: translateX(-15px);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

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

.service-card.large {
    flex: 1 1 calc(50% - 15px);
}

.service-card.wide {
    flex: 1 1 calc(66.666% - 20px);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
}

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4691a;
    margin-bottom: 15px;
}

.select-service {
    padding: 12px 24px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

.philosophy-split {
    display: flex;
    align-items: center;
    padding: 100px 8%;
    gap: 70px;
    background: #2c2c2c;
    color: #fff;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.philosophy-visual {
    flex: 1;
    background-color: #444;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.form-section-asymmetric {
    padding: 100px 8%;
    background: #f4f4f4;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transform: translateX(-40px);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.05rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d4691a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #b85614;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 8% 30px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

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

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

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

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

.disclaimer {
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    max-width: 900px;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-accept {
    background: #d4691a;
    color: #fff;
}

.btn-accept:hover {
    background: #b85614;
}

.btn-reject {
    background: #555;
    color: #fff;
}

.btn-reject:hover {
    background: #666;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .philosophy-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left h1 {
        font-size: 2.2rem;
    }

    .service-card,
    .service-card.large,
    .service-card.wide {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .form-container {
        transform: none;
    }
}