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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 40px;
    gap: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-offset-left {
    flex: 1;
    padding-left: 80px;
    max-width: 600px;
}

.hero-offset-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.hero-visual-right {
    flex: 1.2;
    position: relative;
    margin-top: -40px;
}

.hero-visual-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

.intro-block-offset {
    display: flex;
    gap: 60px;
    padding: 100px 40px 80px 140px;
    align-items: center;
    background: #ffffff;
}

.narrow-content {
    flex: 1;
    max-width: 550px;
}

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.visual-accent {
    flex: 0.8;
    margin-left: -30px;
}

.visual-accent img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #dee2e6;
}

.services-preview-irregular {
    display: flex;
    gap: 70px;
    padding: 80px 40px;
    background: #f8f9fa;
}

.service-card-left {
    flex: 1;
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-left img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

.service-card-right-offset {
    flex: 1;
    margin-top: -20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-right-offset img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

.service-card-left h3,
.service-card-right-offset h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-left p,
.service-card-right-offset p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.overlap-section {
    position: relative;
    padding: 100px 40px;
    margin: 60px 0;
}

.background-block {
    position: absolute;
    top: 0;
    left: 10%;
    right: 0;
    bottom: 0;
    background: #2c3e50;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px;
    background: #ffffff;
    margin-left: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.testimonial-asymmetric {
    padding: 100px 40px 100px 200px;
    background: #f8f9fa;
}

.quote-block {
    max-width: 800px;
    padding: 50px;
    background: #ffffff;
    border-left: 6px solid #3498db;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quote-block blockquote {
    font-size: 24px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-block cite {
    font-size: 16px;
    color: #6c757d;
    font-style: normal;
}

.cta-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 100px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    gap: 60px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-left p {
    font-size: 18px;
    color: #ecf0f1;
}

.cta-right {
    flex: 0;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-container-irregular {
    max-width: 600px;
    margin: 0 auto 0 100px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-container-irregular h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px 40px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236,240,241,0.2);
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

.about-hero-offset {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    align-items: center;
    background: #f8f9fa;
}

.about-content-block {
    flex: 1;
    padding-left: 60px;
    margin-top: 40px;
}

.about-content-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content-block p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.7;
}

.about-visual {
    flex: 1.2;
}

.about-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.story-section {
    padding: 100px 40px;
    background: #ffffff;
}

.story-narrow {
    max-width: 750px;
    margin: 0 auto 0 120px;
}

.story-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-narrow p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 40px;
    background: #f8f9fa;
}

.value-card-offset-left {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    margin-left: 60px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-card-offset-right {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    margin-right: 60px;
    margin-top: -20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-card-center {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-card-offset-left h3,
.value-card-offset-right h3,
.value-card-center h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card-offset-left p,
.value-card-offset-right p,
.value-card-center p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 100px 40px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: 100px;
}

.team-description {
    max-width: 850px;
    margin-left: 100px;
}

.team-description p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.approach-section {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    align-items: center;
    background: #f8f9fa;
}

.approach-left {
    flex: 1;
    padding-left: 80px;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-right {
    flex: 1;
}

.approach-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #dee2e6;
}

.cta-about {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

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

.cta-about p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.services-intro {
    text-align: center;
    padding: 100px 40px 60px 40px;
    background: #f8f9fa;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-offset {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    align-items: center;
    background: #ffffff;
}

.service-visual-left {
    flex: 1;
    margin-left: 40px;
}

.service-visual-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.service-info-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-info-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.service-detail-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    padding: 80px 40px;
    align-items: center;
    background: #f8f9fa;
}

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

.service-info-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-info-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-visual-right {
    flex: 1;
    margin-right: 40px;
}

.service-visual-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.contact-hero {
    text-align: center;
    padding: 100px 40px 60px 40px;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 19px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-info-block {
    max-width: 800px;
    margin: 0 auto 0 100px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.contact-map-placeholder {
    padding: 60px 40px;
    background: #f8f9fa;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: #ffffff;
    border-radius: 8px;
}

.map-info p {
    font-size: 17px;
    color: #4a5568;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

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

.thanks-content .btn-primary {
    margin-top: 20px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

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

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-block-offset,
    .services-preview-irregular,
    .approach-section,
    .service-detail-offset,
    .service-detail-reverse,
    .about-hero-offset,
    .cta-split {
        flex-direction: column;
    }

    .hero-offset-left,
    .approach-left,
    .service-info-left,
    .service-info-right,
    .about-content-block {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-offset-left h1,
    .about-content-block h1 {
        font-size: 36px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-container-irregular {
        margin: 0 auto;
    }

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

    .value-card-offset-left,
    .value-card-offset-right,
    .value-card-center {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }
}