* {
    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: #1a1a1a;
    background: #ffffff;
}

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

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

.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;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #357abd;
}

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

.btn-cookie.reject:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    max-width: 55%;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.hero-offset-right {
    flex: 1;
    overflow: hidden;
    max-width: 45%;
    background-color: #e9ecef;
}

.hero-offset-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-asymmetric {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.intro-left-narrow {
    flex: 0 0 30%;
    background-color: #f8f9fa;
}

.intro-left-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right-wide {
    flex: 1;
    padding: 2rem 0;
}

.intro-right-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right-wide p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.story-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.story-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.story-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.story-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.image-full-overlay {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color: #2c2c2c;
}

.image-full-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.overlay-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-text p {
    font-size: 1.25rem;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 20%;
}

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

.services-header-offset p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

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

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-card.large-left {
    flex: 0 0 calc(50% - 1rem);
    background-color: #e9ecef;
}

.service-card.small-right-top {
    flex: 0 0 calc(50% - 1rem);
}

.service-card.small-right-bottom {
    flex: 0 0 calc(50% - 1rem);
}

.service-card.medium-center {
    flex: 0 0 calc(60% - 1rem);
    margin-left: 10%;
    background-color: #e9ecef;
}

.service-card.medium-bottom-left {
    flex: 0 0 calc(45% - 1rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card .price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #4a90e2;
    margin-top: auto;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.testimonial-card footer {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-section-sticky {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.cta-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-offset p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 15%;
}

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

.form-container-offset > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.insights-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.insights-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.insights-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #4a90e2;
    border-radius: 6px;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.insight-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

    .hero-offset-left,
    .hero-offset-right {
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .intro-left-narrow {
        flex: 0 0 auto;
    }

    .intro-left-narrow img {
        height: 300px;
    }

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

    .service-card {
        flex: 1 1 100% !important;
        margin-left: 0 !important;
    }

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