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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.75rem;
    z-index: 9999;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 2.5rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 3rem 4rem;
    margin-top: 2.5rem;
}

.hero-content-offset {
    width: 45%;
    position: relative;
    z-index: 10;
    padding-left: 5%;
}

.hero-content-offset h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.hero-visual-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

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

.intro-offset {
    padding: 8rem 3rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: #fff;
}

.intro-narrow {
    width: 50%;
    padding-left: 8%;
}

.intro-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-visual-float {
    width: 40%;
    position: relative;
    top: -3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
}

.intro-visual-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-asymmetric {
    padding: 8rem 3rem;
    background: #f8f8f8;
}

.services-header-diagonal {
    max-width: 600px;
    margin-bottom: 5rem;
    padding-left: 10%;
}

.services-header-diagonal h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-diagonal p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 320px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.offset-top {
    margin-top: -2rem;
}

.service-card.offset-bottom {
    margin-top: 3rem;
}

.service-card.offset-right {
    margin-right: -1.5rem;
}

.service-card.offset-left {
    margin-left: -1.5rem;
}

.service-card.offset-center {
    margin-top: 1rem;
}

.service-card.offset-top-right {
    margin-top: -1rem;
    margin-right: -1rem;
}

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

.service-visual {
    height: 240px;
    overflow: hidden;
    background-color: #e5e5e5;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.approach-diagonal {
    display: flex;
    min-height: 100vh;
    background: #fff;
}

.approach-content {
    width: 55%;
    padding: 8rem 5% 5rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e0e0e0;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.approach-visual {
    width: 45%;
    position: relative;
    overflow: hidden;
    background-color: #d0d0d0;
}

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

.form-section-overlap {
    padding: 8rem 3rem;
    background: #f8f8f8;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    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: #2c3e50;
}

.btn-submit {
    padding: 1.2rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 4rem;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-block a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #fff;
}

.footer-block p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem 3rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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 {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2c3e50;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #1a252f;
}

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

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    margin-top: 2.5rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    margin-top: 2.5rem;
    padding: 8rem 3rem 4rem;
}

.about-hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    display: flex;
    padding: 8rem 3rem;
    gap: 5rem;
    align-items: center;
    background: #fff;
}

.story-left {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
}

.story-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-right {
    width: 50%;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.about-values {
    padding: 8rem 3rem;
    background: #f8f8f8;
}

.about-values h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    width: calc(50% - 1.5rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.about-approach {
    display: flex;
    min-height: 80vh;
    background: #fff;
}

.approach-content-about {
    width: 55%;
    padding: 6rem 5% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content-about h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.approach-visual-about {
    width: 45%;
    position: relative;
    overflow: hidden;
    background-color: #d0d0d0;
}

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

.about-cta {
    padding: 8rem 3rem;
    background: #f8f8f8;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    margin-top: 2.5rem;
    padding: 8rem 3rem 4rem;
}

.services-hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 5rem 3rem;
    background: #fff;
}

.service-detail {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail-content {
    width: 50%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 2rem 0;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.services-cta {
    padding: 6rem 3rem;
    background: #f8f8f8;
}

.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    margin-top: 2.5rem;
    padding: 8rem 3rem 4rem;
}

.contact-hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-main {
    display: flex;
    gap: 5rem;
    padding: 8rem 3rem;
    background: #fff;
    align-items: flex-start;
}

.contact-info-block {
    width: 45%;
    padding-left: 5%;
}

.contact-info-block h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.info-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.info-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
    max-height: 600px;
}

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

.legal-page {
    padding: 10rem 3rem 5rem;
    background: #fff;
    margin-top: 2.5rem;
    min-height: 100vh;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #2c3e50;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f8f8;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 968px) {
    .nav-floating {
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-content-offset {
        width: 100%;
        padding-left: 0;
        margin-bottom: 3rem;
    }

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

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 4rem 1.5rem;
    }

    .intro-narrow,
    .intro-visual-float {
        width: 100%;
        padding-left: 0;
        top: 0;
    }

    .services-asymmetric {
        padding: 4rem 1.5rem;
    }

    .services-header-diagonal {
        padding-left: 0;
    }

    .services-grid-irregular {
        gap: 2rem;
    }

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

    .approach-diagonal {
        flex-direction: column;
    }

    .approach-content,
    .approach-visual {
        width: 100%;
        padding: 3rem 1.5rem;
    }

    .form-container {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-story,
    .contact-main {
        flex-direction: column;
        padding: 4rem 1.5rem;
    }

    .story-left,
    .story-right,
    .contact-info-block,
    .contact-visual {
        width: 100%;
        padding-left: 0;
    }

    .values-grid {
        gap: 2rem;
    }

    .value-item {
        width: 100%;
    }

    .about-approach {
        flex-direction: column;
    }

    .approach-content-about,
    .approach-visual-about {
        width: 100%;
        padding: 3rem 1.5rem;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        margin-bottom: 5rem;
        gap: 2rem;
    }

    .service-detail-visual,
    .service-detail-content {
        width: 100%;
    }

    .legal-page {
        padding: 8rem 1.5rem 3rem;
    }

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