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

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

a:hover {
    color: #2980b9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header-asymmetric {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    padding: 6px 12px;
    background-color: #e8eef3;
    font-size: 12px;
    font-weight: 600;
    color: #5a6c7d;
    border-radius: 4px;
}

.nav-floating {
    display: flex;
    gap: 25px;
}

.nav-floating a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

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

.hero-offset {
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 500px;
    padding-left: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a2332;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-image-overlap {
    flex: 1;
    height: 540px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-top: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-asymmetric {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-sidebar {
    flex: 0 0 280px;
}

.intro-sidebar h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    position: sticky;
    top: 40px;
}

.intro-main {
    flex: 1;
}

.intro-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3d4f5f;
}

.story-section {
    padding: 120px 40px;
}

.story-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 0 0 480px;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-30px);
}

.story-image-left img {
    width: 100%;
    height: 100%;
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

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

.services-grid-asymmetric {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-bottom: 60px;
    padding-left: 100px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.services-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card.card-large {
    flex: 1 1 calc(60% - 15px);
}

.service-card.card-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-card.card-small {
    flex: 1 1 calc(40% - 15px);
}

.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-offset {
    padding: 80px 40px;
    background-color: #f8fafc;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 36px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #3d4f5f;
    margin-bottom: 16px;
}

.testimonial-card span {
    font-size: 14px;
    font-weight: 600;
    color: #5a6c7d;
}

.form-section-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 36px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a2332;
}

.references-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8fafc;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    font-size: 15px;
}

.footer-asymmetric {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5d3;
}

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

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

.footer-col ul li a {
    color: #b8c5d3;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b8c5d3;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d3;
}

.about-hero-offset {
    padding: 100px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text-primary h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-text-primary p {
    font-size: 22px;
    color: #5a6c7d;
}

.about-story {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block-left {
    flex: 0 0 500px;
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-block-right {
    flex: 1;
}

.story-block-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.story-block-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3d4f5f;
}

.values-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    padding: 36px;
    background: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #3498db;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section-offset {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.team-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4f5f;
    margin-bottom: 20px;
}

.team-image-overlap {
    margin-top: 50px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(40px);
}

.team-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-about {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8fafc;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
}

.services-hero {
    padding: 100px 40px 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detail-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 480px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4f5f;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 24px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #3d4f5f;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

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

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.contact-info-asymmetric {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-block-right {
    flex: 0 0 500px;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-block-right img {
    width: 100%;
    height: 100%;
}

.contact-note {
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.thanks-container h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-page ul,
.legal-page ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4f5f;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

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

    .hero-text-block h1 {
        font-size: 38px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .intro-sidebar {
        flex: auto;
    }

    .story-container-offset,
    .about-story {
        flex-direction: column;
        gap: 40px;
    }

    .story-image-left,
    .story-block-left {
        flex: auto;
        width: 100%;
        transform: translateY(0);
    }

    .services-header-offset {
        padding-left: 0;
    }

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

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

    .form-container-offset {
        padding: 30px;
        transform: rotate(0deg);
    }

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

    .values-grid-irregular {
        flex-direction: column;
    }

    .team-image-overlap {
        transform: translateX(0);
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-image {
        flex: auto;
        width: 100%;
    }

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

    .contact-block-right {
        flex: auto;
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}