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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #f0a500;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #d69400;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 90%;
    gap: 30px;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

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

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    padding: 140px 60px 80px;
    position: relative;
    background-color: #ffffff;
}

.hero-offset-left {
    flex: 1;
    max-width: 550px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-large {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: 40px;
    background-color: #e8e8e8;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-irregular {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.intro-block-overlap {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.intro-text-box {
    flex: 1.2;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.intro-text-box h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.intro-visual-accent {
    flex: 1;
    background-color: #e0e0e0;
}

.intro-visual-accent img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-staggered {
    padding: 120px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
    margin-left: 140px;
    color: #1a1a1a;
}

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

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fafafa;
    padding: 35px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 80px;
}

.service-offset-3 {
    margin-left: 160px;
}

.service-offset-4 {
    margin-left: 240px;
}

.service-offset-5 {
    margin-left: 100px;
}

.service-image-wrapper {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    background-color: #d0d0d0;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #f0a500;
    margin-top: 12px;
}

.testimonials-offset {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-cluster {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-box {
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f0a500;
}

.testimonial-position-1 {
    margin-left: 50px;
    max-width: 700px;
}

.testimonial-position-2 {
    margin-left: 200px;
    max-width: 650px;
}

.testimonial-position-3 {
    margin-left: 100px;
    max-width: 680px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #f0a500;
    font-weight: 600;
}

.form-section-irregular {
    padding: 120px 60px;
    background-color: #f9f9f9;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-wrapper-offset {
    flex: 1;
    max-width: 600px;
}

.form-wrapper-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

.contact-form-asymmetric {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

.form-visual-element {
    flex: 1;
    min-height: 500px;
    background-color: #d8d8d8;
}

.form-visual-element img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 80px 60px;
    background-color: #fff9e6;
}

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

.disclaimer-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.footer-asymmetric {
    padding: 60px 60px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

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

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.about-hero-offset {
    padding: 140px 60px 80px;
    background-color: #f5f5f5;
    display: flex;
    gap: 60px;
}

.about-title-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title-block h1 {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 20px;
    color: #555;
}

.about-hero-image {
    flex: 1.5;
    min-height: 450px;
    background-color: #d5d5d5;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-irregular {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
}

.story-content-left {
    flex: 1;
}

.story-content-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.story-visual-right {
    flex: 1;
    min-height: 400px;
    background-color: #e0e0e0;
}

.story-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-overlap {
    padding: 120px 60px;
    background-color: #f9f9f9;
}

.values-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.values-grid-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-pos-1 {
    margin-left: 0;
    max-width: 550px;
}

.value-pos-2 {
    margin-left: 150px;
    max-width: 580px;
}

.value-pos-3 {
    margin-left: 80px;
    max-width: 560px;
}

.value-pos-4 {
    margin-left: 200px;
    max-width: 540px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.team-section-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
}

.team-intro-offset {
    flex: 1;
}

.team-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-intro-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.team-visual {
    flex: 1;
    min-height: 350px;
    background-color: #e0e0e0;
}

.team-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-hero {
    padding: 140px 60px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-title-offset {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 60px;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-layout-2,
.service-layout-4 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 350px;
    background-color: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-detail-process {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #f0a500;
    margin-top: 25px;
}

.service-notes {
    padding: 60px;
    background-color: #f5f5f5;
}

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

.notes-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.notes-list {
    list-style: disc;
    margin-left: 25px;
}

.notes-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-hero {
    padding: 140px 60px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 58px;
    font-weight: 700;
}

.contact-content-offset {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #333;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 6px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    background-color: #f5f5f5;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 16px;
    font-weight: 600;
    color: #f0a500;
    margin-bottom: 25px;
}

.thanks-next-steps {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: #333;
}

.legal-page {
    padding: 140px 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 40px 60px;
    }

    .hero-offset-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .hero-image-offset {
        margin-left: 0;
        min-height: 350px;
    }

    .intro-block-overlap,
    .about-story-irregular,
    .form-section-irregular,
    .team-section-asymmetric {
        flex-direction: column;
    }

    .service-detail-item {
        flex-direction: column !important;
    }

    .service-card {
        margin-left: 0 !important;
    }

    .testimonial-box {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .value-item {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .nav-floating {
        flex-wrap: wrap;
        width: 95%;
        padding: 15px 25px;
    }

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

@media screen and (max-width: 640px) {
    .hero-title-large {
        font-size: 36px;
    }

    .section-title-offset {
        font-size: 38px;
        margin-left: 0;
    }

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

    .service-card {
        flex-direction: column;
    }

    .service-image-wrapper {
        width: 100%;
    }
}