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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7bb6;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-notice {
    background: #fffbea;
    color: #8b6914;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0e6c8;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 40px 80px;
}

.hero-content-offset {
    max-width: 580px;
    margin-left: 8%;
    z-index: 10;
    position: relative;
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.hero-image-overlay {
    position: absolute;
    right: -120px;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(-8deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-block-offset {
    padding: 120px 60px 100px;
    background: var(--bg-light);
}

.intro-text-narrow {
    max-width: 680px;
    margin-left: 15%;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-text-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-asymmetric {
    padding: 100px 50px;
    background: var(--bg-white);
}

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

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 5%;
    margin-right: 5%;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-large {
    flex: 1 1 calc(60% - 30px);
}

.card-medium {
    flex: 1 1 calc(38% - 30px);
}

.card-small {
    flex: 1 1 calc(35% - 30px);
}

.service-icon {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.trust-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trust-content-irregular {
    max-width: 900px;
    margin-left: 12%;
}

.trust-content-irregular h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-items-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-item {
    padding-left: 40px;
    border-left: 4px solid var(--accent-color);
}

.trust-item:nth-child(2) {
    margin-left: 80px;
}

.trust-item:nth-child(3) {
    margin-left: 40px;
}

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cta-sticky-block {
    padding: 80px 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.cta-inner {
    transform: skewY(2deg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.testimonials-asymmetric {
    padding: 100px 50px;
    background: var(--bg-light);
}

.testimonials-asymmetric h2 {
    font-size: 2.3rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.testimonials-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-offset {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-offset:nth-child(2) {
    margin-left: 100px;
}

.testimonial-offset:nth-child(3) {
    margin-left: 50px;
}

.testimonial-offset p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-offset cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-section-asymmetric {
    padding: 100px 60px;
    background: var(--bg-white);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 18%;
}

.form-container-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-container-offset > p {
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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: var(--secondary-color);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 60px 50px;
    background: #fffaf0;
    border-top: 2px solid #ffd89b;
    border-bottom: 2px solid #ffd89b;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #705d3a;
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 50px 30px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--bg-white);
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.85;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 60px;
    background: var(--bg-white);
}

.story-content-irregular {
    max-width: 750px;
    margin-left: 12%;
}

.story-content-irregular h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content-irregular p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-section {
    padding: 100px 50px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 300px;
    max-width: 320px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-role {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.values-section {
    padding: 100px 60px;
    background: var(--bg-white);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-list-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding-left: 35px;
    border-left: 4px solid var(--secondary-color);
}

.value-item:nth-child(2) {
    margin-left: 60px;
}

.value-item:nth-child(3) {
    margin-left: 30px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cta-about {
    padding: 100px 50px;
    background: var(--bg-light);
}

.cta-about-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about-inner p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.services-detailed {
    padding: 80px 50px;
    background: var(--bg-white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-list-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 50px;
}

.service-detail-card:nth-child(odd) {
    margin-right: 50px;
}

.service-image {
    flex: 0 0 350px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-text ul {
    margin: 15px 0 20px 25px;
}

.service-text li {
    margin-bottom: 8px;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin: 20px 0;
}

.services-cta {
    padding: 80px 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 80px 50px;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-map {
    flex: 0 0 450px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 80px 50px;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-cta-inner p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2e7d32;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.selected-service-info {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.btn-return {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-return:hover {
    transform: translateY(-2px);
}

.legal-page {
    padding: 100px 50px;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 30px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        top: 30px;
        width: 100%;
        transform: none;
        height: 400px;
    }

    .services-grid-irregular {
        margin-left: 0;
        margin-right: 0;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .service-detail-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
        margin-left: 0;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

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

    .contact-map {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
    }

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

    .intro-text-narrow,
    .services-header-offset,
    .story-content-irregular,
    .form-container-offset {
        margin-left: 0;
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(3),
    .value-item:nth-child(2),
    .value-item:nth-child(3) {
        margin-left: 0;
    }

    .testimonial-offset:nth-child(2),
    .testimonial-offset:nth-child(3) {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}