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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2e7db5;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
    padding-top: 80px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 120px;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.intro-irregular {
    display: flex;
    padding: 100px 5% 80px;
    background-color: var(--bg-light);
    align-items: center;
    gap: 60px;
    position: relative;
}

.intro-text-block {
    flex: 1.5;
    max-width: 640px;
    padding-left: 80px;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 22px;
    color: var(--primary-color);
}

.intro-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.intro-stat-offset {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    transform: translateY(-40px);
    box-shadow: 0 10px 30px rgba(26, 77, 122, 0.2);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
}

.services-staggered {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 60px;
    padding-left: 40px;
    color: var(--primary-color);
}

.service-card-left,
.service-card-right {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: center;
}

.service-card-left {
    padding-left: 40px;
}

.service-card-right {
    padding-right: 40px;
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-diagonal {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin: 60px 0;
}

.cta-content {
    transform: skewY(2deg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.form-section-offset {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(-60px);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-overlap {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-image {
    flex: 1;
    transform: translateX(30px);
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column a,
.footer-column p {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -4px 12px 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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.thanks-service {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.page-hero-offset {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    transform: translateX(-20px);
}

.page-hero-offset h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    display: flex;
    padding: 80px 5%;
    gap: 50px;
    align-items: center;
}

.story-image-left {
    flex: 1;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.story-content-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-content-right p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.expertise-diagonal {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    transform: skewY(-1deg);
    background-color: var(--bg-white);
    margin: 40px 0;
}

.expertise-content {
    flex: 1;
    transform: skewY(1deg);
}

.expertise-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.expertise-visual {
    flex: 1;
    transform: skewY(1deg);
}

.expertise-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

.team-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.team-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.team-highlight p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.services-detail {
    padding: 60px 5%;
    background-color: var(--bg-white);
}

.service-block-full,
.service-block-offset {
    margin-bottom: 80px;
    padding: 45px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-block-offset {
    transform: translateX(40px);
    max-width: 95%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content {
    display: flex;
    gap: 45px;
    align-items: center;
    margin-bottom: 25px;
}

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

.service-description {
    flex: 1.2;
}

.service-description h4 {
    font-size: 1.2rem;
    margin: 20px 0 12px;
    color: var(--primary-color);
}

.service-description ul {
    margin-left: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-image-aside {
    flex: 1;
}

.service-image-aside img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--bg-white);
}

.cta-services {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

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

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    margin-top: 8px;
    font-style: italic;
    font-size: 0.95rem;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(40px);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.response-info {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.response-info h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.response-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.response-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.response-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.response-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-page li {
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-image-overlap img {
        border-radius: 12px;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }

    .trust-overlap,
    .about-story,
    .expertise-diagonal,
    .contact-layout {
        flex-direction: column;
    }

    .intro-irregular {
        flex-direction: column;
        gap: 40px;
    }

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

    .intro-stat-offset {
        transform: none;
        width: 100%;
    }

    .form-container {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .response-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .service-block-offset {
        transform: none;
        max-width: 100%;
    }

    .contact-image-offset {
        transform: none;
    }
}