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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    color: #555;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

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

.hero-text-block {
    background: rgba(255, 255, 255, 0.92);
    padding: 60px 50px;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 75%;
    z-index: 1;
}

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

.intro-offset {
    padding: 120px 60px 80px;
    background: #f8f9fa;
}

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

.intro-text-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
}

.intro-text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-grid-asymmetric {
    padding: 100px 60px;
    position: relative;
}

.section-header-offset {
    margin-left: 8%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
}

.service-card {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

.service-left {
    flex-direction: row;
    margin-left: 5%;
}

.service-right {
    flex-direction: row-reverse;
    margin-right: 5%;
}

.service-center {
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.service-image-wrap {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 20px;
}

.select-service-btn {
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-container-overlap {
    max-width: 600px;
    margin-left: auto;
    margin-right: 10%;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.form-container-overlap h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-submit-btn {
    background: #27ae60;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.3);
}

.trust-indicators-offset {
    padding: 100px 60px;
    background: #ecf0f1;
}

.trust-block {
    max-width: 700px;
    margin-left: 12%;
}

.trust-block h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #bdc3c7;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.page-header-offset {
    padding: 160px 60px 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.page-header-offset h1 {
    font-size: 52px;
    color: #ffffff;
    margin-left: 8%;
}

.about-story-section {
    padding: 100px 60px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

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

.story-text-right {
    flex: 1;
    padding: 20px;
}

.story-text-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-diagonal {
    padding: 100px 60px;
    background: #f8f9fa;
    transform: skewY(-2deg);
}

.values-wrapper {
    transform: skewY(2deg);
    display: flex;
    gap: 50px;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 350px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.process-section-overlap {
    padding: 120px 60px;
}

.process-section-overlap h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 35px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    opacity: 0.3;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-image-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.team-overlay-text {
    position: absolute;
    bottom: 50px;
    left: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 8px;
    max-width: 500px;
}

.team-overlay-text p {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.services-detailed {
    padding: 80px 60px;
}

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

.service-layout-a {
    flex-direction: row;
}

.service-layout-b {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

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

.service-detail-text {
    flex: 1;
    padding: 20px;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.service-pricing {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.cta-services {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-layout-diagonal {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

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

.thanks-section {
    padding: 150px 60px 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.button-secondary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.button-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

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

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

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

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

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        top: 20px;
        padding: 20px;
    }

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

    .hero-image-overlap {
        position: static;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

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

    .about-story-section,
    .service-detail-block,
    .contact-layout-diagonal,
    .thanks-section {
        flex-direction: column;
    }

    .values-wrapper,
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-offset {
        margin-left: 0;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .intro-text-narrow {
        margin-left: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .services-grid-asymmetric,
    .intro-offset,
    .trust-indicators-offset,
    .form-section-diagonal {
        padding: 60px 30px;
    }

    .form-container-overlap {
        margin-right: 0;
    }

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

    .disclaimer-fixed {
        display: none;
    }
}