* {
    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.6;
    color: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

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

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

.nav-primary a:hover {
    color: #2d3748;
}

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 5px 10px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    margin-bottom: 100px;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 40px 80px 80px;
    display: flex;
    align-items: center;
    background-color: #f7fafc;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 40px;
    width: 60%;
    height: calc(100% + 80px);
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    width: 50%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-image-right {
    width: 40%;
    margin-left: auto;
    background-color: #edf2f7;
}

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

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.section-title-left {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-title-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-title-left p {
    font-size: 18px;
    color: #718096;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-large {
    width: calc(58% - 15px);
}

.card-medium {
    width: calc(48% - 15px);
}

.card-small {
    width: calc(38% - 15px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #edf2f7;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.card-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

.btn-service {
    padding: 12px 28px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #3182ce;
}

.why-choose-diagonal {
    background-color: #f7fafc;
    padding: 100px 0;
    margin-bottom: 120px;
    position: relative;
}

.why-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
}

.why-content-overlap h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a202c;
}

.reasons-stacked {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.reason-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.why-image-offset {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    background-color: #cbd5e0;
}

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

.form-section-asymmetric {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-text {
    width: 35%;
}

.form-intro-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.2;
}

.form-intro-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.form-container-offset {
    width: 55%;
    background-color: #f7fafc;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #4299e1;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2d3748;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-main {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 13px;
}

.about-hero-split {
    max-width: 1400px;
    margin: 80px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-side {
    width: 50%;
}

.about-text-side h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #1a202c;
    line-height: 1.1;
}

.about-text-side p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.about-image-side {
    width: 45%;
    background-color: #edf2f7;
}

.about-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-section {
    background-color: #f7fafc;
    padding: 80px 0;
    margin-bottom: 100px;
}

.philosophy-content-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.philosophy-content-center h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

.philosophy-content-center p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 25px;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 50px;
}

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

.team-intro-offset p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.team-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.value-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    background-color: #1a202c;
    color: white;
    padding: 100px 0;
    margin-bottom: 100px;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.approach-steps {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #48bb78;
}

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

.cta-section-about {
    padding: 80px 0 120px;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-content-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.services-hero {
    background-color: #f7fafc;
    padding: 100px 0 80px;
    margin-bottom: 80px;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a202c;
    line-height: 1.1;
}

.services-hero-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.left-align .service-detail-image {
    order: 1;
}

.left-align .service-detail-content {
    order: 2;
}

.right-align .service-detail-image {
    order: 2;
}

.right-align .service-detail-content {
    order: 1;
}

.service-detail-image {
    width: 45%;
    background-color: #edf2f7;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #2d3748;
    font-size: 16px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 25px 0;
}

.services-cta {
    background-color: #f7fafc;
    padding: 80px 0;
    margin-bottom: 0;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-cta-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.contact-hero {
    background-color: #f7fafc;
    padding: 100px 0 80px;
    margin-bottom: 80px;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a202c;
}

.contact-hero-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-section {
    margin-bottom: 100px;
}

.contact-details-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-detail-block {
    width: 50%;
}

.contact-detail-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image-block {
    width: 45%;
    background-color: #edf2f7;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visit-section {
    background-color: #f7fafc;
    padding: 80px 0;
    margin-bottom: 100px;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.visit-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
}

.visit-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.faq-section {
    margin-bottom: 100px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a202c;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2d3748;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 35px;
    background-color: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a202c;
}

.btn-secondary {
    padding: 14px 35px;
    background-color: transparent;
    color: #2d3748;
    text-decoration: none;
    border: 2px solid #2d3748;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d3748;
    color: white;
}

.legal-content {
    padding: 80px 0 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-container ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-container strong {
    color: #2d3748;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-narrow,
    .intro-image-right {
        width: 100%;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: calc(50% - 15px);
    }

    .why-image-offset {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 40px;
    }

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

    .form-intro-text,
    .form-container-offset {
        width: 100%;
    }

    .about-hero-split,
    .service-detail-block,
    .contact-details-offset {
        flex-direction: column;
        gap: 40px;
    }

    .about-text-side,
    .about-image-side,
    .service-detail-image,
    .service-detail-content,
    .contact-detail-block,
    .contact-image-block {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .nav-primary {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-text-block p {
        font-size: 17px;
    }

    .intro-narrow h2,
    .section-title-left h2 {
        font-size: 30px;
    }

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

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

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