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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    background-color: #f39c12;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

.header-asymmetric {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-floating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.nav-list a {
    color: #2c3e50;
    font-weight: 500;
}

.nav-list a:hover {
    color: #f39c12;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-left: 8%;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f39c12;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

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

.intro-offset {
    padding: 6rem 2rem;
    background-color: #fff;
}

.intro-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image-left {
    flex: 0 0 45%;
    margin-left: -5%;
}

.intro-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-text-right {
    flex: 1;
    padding-right: 5%;
}

.intro-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.benefits-stagger {
    padding: 7rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.benefits-header-offset {
    max-width: 1300px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 10%;
}

.benefits-header-offset h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-subheading {
    font-size: 1.2rem;
    color: #777;
}

.benefits-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.benefit-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-1 {
    flex: 0 0 calc(35% - 1.25rem);
    margin-top: 2rem;
}

.card-2 {
    flex: 0 0 calc(30% - 1.25rem);
    margin-top: -1rem;
}

.card-3 {
    flex: 0 0 calc(28% - 1.25rem);
    margin-top: 3rem;
}

.benefit-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.story-overlap {
    padding: 7rem 2rem;
    background-color: #fff;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.story-text-block {
    flex: 1.2;
    padding-right: 3rem;
}

.story-text-block h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.story-text-block a {
    color: #f39c12;
    font-weight: 600;
}

.story-text-block a:hover {
    text-decoration: underline;
}

.story-image-block {
    flex: 0 0 38%;
    margin-top: 4rem;
}

.story-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px -15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-asymmetric {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #fdfbfb 0%, #e8eced 100%);
}

.services-intro {
    max-width: 1300px;
    margin: 0 auto 5rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.service-large {
    flex: 0 0 calc(55% - 1rem);
}

.service-medium {
    flex: 0 0 calc(42% - 1rem);
}

.service-small {
    flex: 0 0 calc(31% - 1rem);
}

.service-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e0e0e0;
    transition: transform 0.4s ease;
}

.service-item:hover .service-image-wrap img {
    transform: scale(1.08);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

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

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

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

.testimonials-offset {
    padding: 6rem 2rem;
    background-color: #fff;
}

.testimonials-offset h2 {
    max-width: 1300px;
    margin: 0 auto 4rem;
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
}

.testimonials-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.t-card-1 {
    flex: 0 0 calc(30% - 1.25rem);
    margin-top: 2rem;
}

.t-card-2 {
    flex: 0 0 calc(35% - 1.25rem);
    margin-top: -1rem;
}

.t-card-3 {
    flex: 0 0 calc(28% - 1.25rem);
    margin-top: 2.5rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-section-offset {
    padding: 7rem 2rem;
    background: linear-gradient(to bottom right, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

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

.selection-notice {
    background-color: #f39c12;
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

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

.footer-blocks {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

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

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-block ul li {
    margin-bottom: 0.8rem;
}

.footer-block ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.references-list a {
    color: #f39c12;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3d5466;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

    .hero-text-block {
        padding-left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .intro-image-left {
        margin-left: 0;
    }

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

    .story-image-block {
        margin-top: 2rem;
    }

    .services-layout-offset {
        flex-direction: column;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 0 0 100%;
    }

    .benefits-grid-irregular,
    .testimonials-irregular {
        flex-direction: column;
    }

    .card-1, .card-2, .card-3,
    .t-card-1, .t-card-2, .t-card-3 {
        flex: 0 0 100%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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