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

.ad-notice {
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin-left: 8%;
    margin-top: -5%;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 36px;
    color: #555;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-visual-layer {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 70%;
    z-index: 1;
    background-color: #e8e8e8;
}

.hero-visual-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-block-offset {
    padding: 100px 40px 80px;
    background-color: #fff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto 0 12%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-asymmetric {
    padding: 120px 40px 100px;
    background-color: #f9f9f9;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.services-header-left h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-card.offset-top-right {
    margin-top: -20px;
    margin-left: 20px;
}

.service-card.center-wide {
    flex: 1 1 calc(50% - 30px);
}

.service-card.offset-left {
    margin-left: -30px;
}

.service-card.offset-bottom-right {
    margin-top: 25px;
    margin-right: -20px;
}

.service-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.testimonial-layer {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    background-color: #fff;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
    padding-left: 8%;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #777;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
    max-width: 500px;
    background-color: #e8e8e8;
}

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

.insight-block-diagonal {
    padding: 100px 40px;
    background-color: #f4f4f4;
}

.insight-block-diagonal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-columns {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
}

.insight-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.form-section-floating {
    padding: 120px 40px;
    background-color: #fff;
}

.form-container-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-side {
    flex: 1;
}

.form-intro-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro-side p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.contact-form-styled {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.form-submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.references-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

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

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

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

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 25px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #ecf0f1;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-1px);
}

.page-header-offset {
    padding: 100px 40px 60px;
    background-color: #f4f4f4;
    text-align: left;
    margin-left: 8%;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-subtitle {
    font-size: 19px;
    color: #555;
    max-width: 700px;
}

.about-story-section {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    gap: 60px;
    background-color: #fff;
}

.story-visual-left {
    flex: 1;
    max-width: 500px;
    background-color: #e8e8e8;
}

.story-visual-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.story-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

.value-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.value-card:nth-child(odd) {
    margin-top: -15px;
}

.value-card:nth-child(even) {
    margin-top: 15px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-approach-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.approach-content-center h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content-center p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.services-detailed-section {
    padding: 80px 40px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-block.left-aligned {
    flex-direction: row;
}

.service-detail-block.right-aligned {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
    background-color: #e8e8e8;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-box {
    margin-bottom: 20px;
    padding: 18px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    color: #555;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.cta-section-bottom {
    padding: 80px 40px;
    text-align: center;
    background-color: #f4f4f4;
}

.cta-section-bottom h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-section-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-btn-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 80px 40px;
}

.contact-blocks-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-block:nth-child(1) {
    margin-top: -20px;
}

.contact-block:nth-child(2) {
    margin-top: 20px;
}

.contact-block:nth-child(3) {
    margin-top: 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-visual-section {
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.contact-note-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

.note-content-center h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.note-content-center p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.thanks-section-centered {
    padding: 120px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #444;
}

.thanks-service-info {
    margin-bottom: 32px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 18px;
}

.btn-back-home,
.btn-view-services {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-back-home {
    background-color: #3498db;
    color: #fff;
}

.btn-back-home:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.btn-view-services {
    background-color: #95a5a6;
    color: #fff;
}

.btn-view-services:hover {
    background-color: #7f8c8d;
    transform: translateY(-1px);
}

.thanks-visual {
    flex: 1;
    max-width: 450px;
    background-color: #e8e8e8;
}

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

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #fff;
}

.legal-page-content h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-update {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.legal-page-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.legal-page-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-page-content a:hover {
    text-decoration: underline;
}

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

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

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .hero-visual-layer {
        position: relative;
        width: 100%;
        height: 300px;
        transform: none;
        top: auto;
    }

    .services-grid-irregular,
    .insight-columns,
    .values-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        margin: 0;
    }

    .testimonial-layer,
    .form-container-asymmetric,
    .about-story-section,
    .service-detail-block,
    .thanks-section-centered {
        flex-direction: column;
    }

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

    .contact-block {
        margin-top: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}