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

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

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    padding: 5%;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 4rem 0;
    z-index: 2;
    color: #fff;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 60%;
    height: 80%;
    transform: rotate(-3deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.4);
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231,76,60,0.3);
}

.intro-offset {
    display: flex;
    padding: 8rem 5%;
    gap: 5rem;
    align-items: center;
}

.intro-text-block {
    width: 55%;
    font-size: 1.4rem;
    line-height: 1.9;
    color: #555;
}

.intro-visual {
    width: 40%;
    position: relative;
    transform: translateY(-3rem);
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.2);
    background-color: #ddd;
}

.services-irregular {
    padding: 6rem 5%;
    background: #fff;
}

.services-irregular h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: left;
    padding-left: 10%;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-card.offset-left {
    padding-left: 5%;
}

.service-card.offset-right {
    padding-left: 15%;
}

.service-card.offset-center {
    padding-left: 10%;
}

.service-image {
    width: 45%;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 8px 8px 30px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

.service-info {
    width: 50%;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.select-service:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,62,80,0.3);
}

.form-section {
    padding: 7rem 5%;
    background: linear-gradient(125deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    gap: 5rem;
}

.form-intro {
    width: 40%;
    padding-top: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.contact-form {
    width: 55%;
    background: #fff;
    padding: 3rem;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px 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: #3498db;
}

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

.btn-submit:hover {
    background: #c0392b;
    box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

.philosophy-block {
    padding: 8rem 15%;
    background: #2c3e50;
    color: #ecf0f1;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonials-scattered {
    padding: 8rem 5%;
    position: relative;
    background: #f8f9fa;
}

.testimonial {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 8px 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    border-left: 4px solid #e74c3c;
}

.testimonial.left-float {
    width: 60%;
    margin-left: 5%;
}

.testimonial.right-float {
    width: 55%;
    margin-left: 40%;
}

.testimonial.center-float {
    width: 65%;
    margin-left: 20%;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
    font-style: italic;
}

.testimonial cite {
    font-size: 1rem;
    color: #888;
    font-style: normal;
}

.cta-floating {
    padding: 5rem;
    text-align: center;
    background: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,62,80,0.3);
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ecf0f1;
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: rgba(236,240,241,0.1);
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 700px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: #555;
}

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

    .hero-content-offset {
        width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-float {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 2rem;
    }

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

    .intro-text-block,
    .intro-visual {
        width: 100%;
        transform: none;
    }

    .service-card {
        flex-direction: column;
        padding-left: 0 !important;
    }

    .service-image,
    .service-info {
        width: 100%;
    }

    .form-section {
        flex-direction: column;
    }

    .form-intro,
    .contact-form {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}