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

body {
    font-family: 'Georgia', serif;
    color: #2c2c2c;
    line-height: 1.6;
    background: #fafafa;
}

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

.main-nav {
    background: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

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

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

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    padding: 60px 5%;
    background: #fff;
    position: relative;
}

.hero-text-block {
    width: 45%;
    padding: 80px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

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

.cta-primary:hover {
    background: #8b6f47;
}

.hero-image-offset {
    width: 55%;
    position: relative;
    margin-left: -5%;
    margin-top: 50px;
    background: #e8e8e8;
}

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

.philosophy-asymmetric {
    display: flex;
    padding: 100px 5%;
    background: #f5f5f5;
    gap: 60px;
}

.phil-visual {
    width: 40%;
    background: #ddd;
}

.phil-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phil-content-offset {
    width: 60%;
    padding: 60px 0 60px 40px;
}

.phil-content-offset h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.phil-content-offset p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.services-creative {
    padding: 100px 5%;
    background: #fff;
}

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

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

.services-header-offset p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card.offset-1 {
    width: calc(55% - 20px);
    margin-left: 0;
}

.service-card.offset-2 {
    width: calc(45% - 20px);
    margin-top: 60px;
}

.service-card.offset-3 {
    width: calc(48% - 20px);
    margin-left: 5%;
}

.service-card.offset-4 {
    width: calc(47% - 20px);
    margin-top: -40px;
}

.service-card.offset-5 {
    width: calc(40% - 20px);
    margin-left: 2%;
}

.service-card.offset-6 {
    width: calc(55% - 20px);
    margin-top: 30px;
}

.service-image {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 15px;
    color: #555;
    font-size: 16px;
}

.service-price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: bold;
    color: #8b6f47;
}

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

.btn-select-service:hover {
    background: #8b6f47;
}

.form-section-offset {
    padding: 100px 5%;
    background: #f9f9f9;
}

.form-container-creative {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container-creative h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-creative > p {
    margin-bottom: 40px;
    color: #555;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #8b6f47;
}

.trust-offset {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #fff;
}

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

.testimonials-creative {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

.main-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 60px 5%;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #8b6f47;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid #8b6f47;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin-right: 30px;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.8;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.content-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.content-page ul {
    margin: 20px 0 20px 30px;
}

.content-page li {
    margin-bottom: 10px;
    color: #444;
}

.contact-info {
    background: #f5f5f5;
    padding: 30px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-back-home {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background: #8b6f47;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

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

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

    .phil-visual,
    .phil-content-offset {
        width: 100%;
    }

    .service-card {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
}