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

.header-asymmetric {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
}

.ad-disclosure {
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.hero-diagonal {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-text-offset {
    flex: 1;
    padding: 3rem;
    margin-left: -8rem;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    transform: skewY(-2deg);
    padding: 5rem 4rem;
}

.hero-text-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    transform: skewY(2deg);
}

.hero-text-offset p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    transform: skewY(2deg);
}

.hero-image-overlap {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    transform: skewY(2deg);
}

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

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

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 8rem 4rem 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1;
    padding-right: 2rem;
    margin-top: -3rem;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.intro-image-float {
    flex: 0.8;
    margin-right: 4rem;
    margin-top: 2rem;
    background-color: #e8eaed;
}

.intro-image-float img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.1);
}

.services-stagger {
    padding: 6rem 2rem 8rem;
    background-color: #fff;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 8rem;
    color: #1a252f;
}

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

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-1 {
    margin-left: 5rem;
}

.card-2 {
    margin-left: 15rem;
    flex-direction: row-reverse;
}

.card-3 {
    margin-left: 2rem;
}

.card-4 {
    margin-left: 20rem;
    flex-direction: row-reverse;
}

.card-5 {
    margin-left: 10rem;
}

.card-6 {
    margin-left: 18rem;
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 350px;
    background-color: #dfe3e6;
}

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

.service-content {
    flex: 1;
    padding: 1rem;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

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

.select-service {
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.select-service.selected {
    background-color: #27ae60;
}

.form-section-diagonal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    transform: skewY(-3deg);
    margin: 4rem 0;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto 0 10rem;
    background-color: #fff;
    padding: 4rem;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    transform: skewY(3deg);
}

.form-wrapper-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-wrapper-offset > p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.selected-service-display.empty {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #dfe3e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.trust-section-overlap {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 6rem 2rem 6rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content {
    flex: 1;
    padding-right: 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.trust-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.trust-image-stack {
    flex: 0.9;
    position: relative;
    margin-right: -4rem;
    background-color: #d6dade;
}

.trust-image-stack img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #bdc3c7;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

.about-hero-offset {
    padding: 8rem 2rem 6rem 10rem;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
}

.about-hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-hero-text p {
    font-size: 1.5rem;
    color: #bdc3c7;
}

.about-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.about-block-wide {
    padding: 3rem 4rem 3rem 8rem;
    margin-bottom: 4rem;
}

.about-block-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-block-wide p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image-float-right {
    float: right;
    width: 500px;
    margin: -2rem 4rem 2rem 3rem;
    background-color: #e3e6e8;
}

.about-image-float-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-block-narrow {
    max-width: 800px;
    padding: 3rem 2rem 3rem 15rem;
    margin-bottom: 4rem;
}

.about-block-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-block-narrow p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values-offset {
    background-color: #f8f9fa;
    padding: 4rem 3rem 4rem 12rem;
    margin: 4rem 0 4rem 6rem;
}

.about-values-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.15rem;
    color: #5a6c7d;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.about-image-overlap-left {
    width: 450px;
    margin: -3rem 0 3rem 8rem;
    background-color: #dfe2e5;
}

.about-image-overlap-left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.15);
}

.about-team-section {
    padding: 3rem 4rem 3rem 6rem;
    max-width: 900px;
}

.about-team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-team-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-section-diagonal {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-section-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transform: skewY(2deg);
}

.cta-section-diagonal .cta-secondary {
    border-color: #fff;
    color: #fff;
    transform: skewY(2deg);
}

.cta-section-diagonal .cta-secondary:hover {
    background-color: #fff;
    color: #2980b9;
}

.services-hero-diagonal {
    padding: 8rem 2rem 6rem 8rem;
    background-color: #ecf0f1;
    transform: skewY(-2deg);
    margin-bottom: 6rem;
}

.services-hero-diagonal h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    transform: skewY(2deg);
}

.services-hero-diagonal p {
    font-size: 1.3rem;
    color: #5a6c7d;
    transform: skewY(2deg);
}

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-offset-1 {
    margin-left: 3rem;
}

.service-offset-2 {
    margin-left: 10rem;
}

.service-offset-3 {
    margin-left: 5rem;
}

.service-offset-4 {
    margin-left: 12rem;
}

.service-offset-5 {
    margin-left: 7rem;
}

.service-offset-6 {
    margin-left: 2rem;
}

.service-detail-image {
    flex: 0 0 500px;
    background-color: #e8eaed;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.cta-service {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.process-section-overlap {
    background-color: #f8f9fa;
    padding: 6rem 4rem 6rem 10rem;
    margin: 4rem 0;
}

.process-section-overlap h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.process-steps {
    display: flex;
    gap: 3rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-hero-offset {
    padding: 8rem 2rem 6rem 12rem;
    background-color: #34495e;
    color: #fff;
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-offset p {
    font-size: 1.3rem;
    color: #bdc3c7;
}

.contact-content-asymmetric {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-info-block {
    flex: 1;
    padding-left: 4rem;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
}

.contact-note p {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-image-overlap {
    flex: 0.8;
    margin-top: 3rem;
    margin-right: -2rem;
    background-color: #dfe3e6;
}

.contact-image-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
}

.directions-section-diagonal {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 4rem 3rem 8rem;
    background-color: #f8f9fa;
    transform: skewY(-1deg);
}

.directions-section-diagonal h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    transform: skewY(1deg);
}

.directions-section-diagonal p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
    transform: skewY(1deg);
}

.thanks-section-centered {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
}

.thanks-content {
    flex: 1;
    padding-left: 4rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.thanks-service-info p {
    margin: 0;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.thanks-image {
    flex: 0.8;
    background-color: #e8eaed;
}

.thanks-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

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

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

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

.legal-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

    .hero-text-offset {
        margin-left: 0;
        transform: none;
    }

    .hero-text-offset h1,
    .hero-text-offset p,
    .cta-primary {
        transform: none;
    }

    .services-grid-irregular .service-card {
        margin-left: 0 !important;
        flex-direction: column !important;
    }

    .form-wrapper-offset {
        margin-left: 0;
    }

    .footer-content-offset {
        flex-direction: column;
        padding-left: 0;
    }

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

    .about-image-float-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

    .service-detail {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .contact-content-asymmetric {
        flex-direction: column;
    }

    .thanks-section-centered {
        flex-direction: column;
    }
}