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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

.hero-offset {
    display: flex;
    flex-direction: column;
    padding: 80px 60px 60px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-text-block {
    max-width: 560px;
    margin-bottom: 40px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.hero-image-offset {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: 60px;
    background-color: #dee2e6;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    max-width: 480px;
}

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

.intro-narrow p {
    font-size: 17px;
    color: #5a6c7d;
}

.intro-wide-image {
    flex: 1.2;
    background-color: #dee2e6;
}

.intro-wide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-stacked {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.service-visual {
    flex: 1;
    background-color: #dee2e6;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
}

.value-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    background-color: #f8f9fa;
    align-items: flex-start;
}

.value-text {
    flex: 1.3;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.3;
}

.value-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.value-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 24px;
    line-height: 1;
}

.value-image-float {
    flex: 1;
    background-color: #dee2e6;
    margin-top: 60px;
}

.value-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-overlap {
    padding: 120px 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.cta-box {
    max-width: 600px;
    padding: 60px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-box p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

.service-form select,
.service-form input {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: inherit;
}

.service-form select:focus,
.service-form input:focus {
    outline: none;
    border-color: #2c3e50;
}

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

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 60px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

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

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

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    flex-basis: 100%;
    padding-top: 40px;
    border-top: 1px solid #4a5d6f;
    margin-top: 20px;
}

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

.cookie-banner.show {
    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;
    font-size: 14px;
    color: #5a6c7d;
}

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

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

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

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a252f;
}

.btn-reject {
    background-color: #e9ecef;
    color: #5a6c7d;
}

.btn-reject:hover {
    background-color: #dee2e6;
}

.about-hero-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
}

.about-text-offset {
    flex: 1;
    padding-top: 40px;
}

.about-text-offset h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a252f;
    line-height: 1.2;
}

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

.about-image-stack {
    flex: 1;
    background-color: #dee2e6;
}

.about-image-stack img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mission-irregular {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    background-color: #f8f9fa;
    align-items: center;
}

.mission-block {
    flex: 1.5;
}

.mission-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.mission-block p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.mission-visual {
    flex: 1;
    background-color: #dee2e6;
}

.mission-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-asymmetric {
    padding: 100px 60px;
}

.values-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    padding: 40px;
    background-color: #f8f9fa;
}

.value-item.offset-left {
    margin-left: 0;
    margin-right: 150px;
}

.value-item.offset-right {
    margin-left: 150px;
    margin-right: 0;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-staggered {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.team-staggered h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a252f;
}

.team-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.team-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.approach-diagonal {
    padding: 100px 60px;
    background-color: #ffffff;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto 0 0;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-header-offset {
    padding: 100px 60px 60px;
    max-width: 700px;
}

.services-header-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

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

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

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

.service-image-left {
    flex: 1;
    background-color: #dee2e6;
}

.service-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-info-right {
    flex: 1.2;
}

.service-info-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-info-right p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.service-info-right ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-info-right ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-info-right ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

.service-price {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    display: inline-block;
}

.service-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.service-price .price-note {
    font-size: 14px;
    color: #6c757d;
}

.booking-cta-offset {
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: flex-end;
}

.booking-box {
    max-width: 600px;
    padding: 60px;
    background-color: #ffffff;
    border-right: 4px solid #2c3e50;
}

.booking-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.booking-box p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.contact-header-asymmetric {
    padding: 100px 60px 40px;
    max-width: 700px;
}

.contact-header-asymmetric h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

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

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

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

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.contact-visual-offset {
    flex: 1;
    background-color: #dee2e6;
    margin-top: 60px;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-note-section {
    padding: 60px 60px 100px;
    background-color: #f8f9fa;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #2c3e50;
}

.note-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.note-box p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.note-box a {
    color: #2c3e50;
    text-decoration: underline;
}

.thanks-container {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #ced4da;
}

.btn-secondary:hover {
    background-color: #e9ecef;
}

.thanks-visual {
    flex: 1;
    background-color: #dee2e6;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-offset,
    .intro-asymmetric,
    .service-card-offset,
    .value-diagonal,
    .about-hero-split,
    .mission-irregular,
    .team-layout,
    .service-full-card,
    .contact-layout-offset,
    .thanks-container {
        flex-direction: column;
        padding: 40px 20px;
    }

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

    .value-item.offset-left,
    .value-item.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-asymmetric {
        padding: 40px 20px;
    }

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