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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    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;
    min-width: 300px;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin-bottom: 80px;
}

.hero-content-offset {
    width: 55%;
    padding: 100px 60px 60px 80px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-text-block {
    max-width: 540px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-image-offset {
    width: 45%;
    position: absolute;
    right: 0;
    top: 60px;
    height: calc(100% - 60px);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-overlap {
    max-width: 1300px;
    margin: -40px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.intro-card-left {
    flex: 1.2;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.intro-card-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #546e7a;
}

.services-staggered {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-title-offset {
    max-width: 1300px;
    margin: 0 auto 70px 80px;
}

.section-title-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-title-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card.offset-1 {
    margin-left: 0;
}

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

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

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

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

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

.service-image {
    width: 280px;
    min-width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    position: relative;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #7f8c8d;
}

.contact-form {
    transform: rotate(1deg);
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-indicators-overlap {
    padding: 80px 40px 100px;
    background-color: #ffffff;
}

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

.trust-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-top: 4px solid #3498db;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(236, 240, 241, 0.1);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    font-size: 13px;
    color: #95a5a6;
}

.about-hero-offset {
    padding: 100px 40px 80px;
    background-color: #f8f9fa;
}

.about-content-block {
    max-width: 800px;
    margin-left: 120px;
}

.about-content-block h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.about-content-block p {
    font-size: 20px;
    color: #7f8c8d;
}

.about-story-irregular {
    display: flex;
    gap: 80px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text-left {
    flex: 1.2;
    padding-right: 40px;
}

.story-text-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-text-left p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #546e7a;
    line-height: 1.7;
}

.story-image-offset {
    flex: 0.8;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(40px);
}

.story-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-staggered {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-staggered h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.value-card.offset-a {
    margin-left: 0;
    max-width: 600px;
}

.value-card.offset-b {
    margin-left: 200px;
    max-width: 600px;
}

.value-card.offset-c {
    margin-left: 400px;
    max-width: 600px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.team-intro-offset {
    margin-bottom: 60px;
    margin-left: 80px;
}

.team-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.team-intro-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.team-details {
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
    padding: 35px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.team-member p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-about-diagonal {
    padding: 120px 40px;
    background: linear-gradient(120deg, #3498db 0%, #2c3e50 100%);
}

.cta-content-offset {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
    color: #ffffff;
}

.cta-content-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-content-offset p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-hero-diagonal {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.services-hero-content p {
    font-size: 20px;
    color: #546e7a;
}

.services-detailed-offset {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 10px;
}

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

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

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

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

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #546e7a;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
}

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

.services-cta-overlap {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-services-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-services-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-services-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.contact-hero-asymmetric {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
}

.contact-intro-offset {
    max-width: 700px;
    margin-left: 100px;
}

.contact-intro-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-intro-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-content-split {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

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

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

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-additional {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-additional h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-map-placeholder {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

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

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

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

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

.btn-see-services {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-see-services:hover {
    background-color: #d5dbdb;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

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

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

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

    .intro-overlap {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid-irregular {
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        margin-left: 0;
    }

    .service-image {
        width: 100%;
    }

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

    .story-image-offset {
        transform: translateY(0);
    }

    .value-card.offset-a,
    .value-card.offset-b,
    .value-card.offset-c {
        margin-left: 0;
        max-width: 100%;
    }

    .team-details {
        flex-direction: column;
    }

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

    .service-detail-card.right-aligned {
        flex-direction: column;
    }

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

    .contact-content-split {
        flex-direction: column;
    }

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

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

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

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

    .section-title-offset {
        margin-left: 0;
    }

    .section-title-offset h2 {
        font-size: 32px;
    }

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

    .about-content-block {
        margin-left: 0;
    }

    .about-content-block h1 {
        font-size: 38px;
    }

    .team-intro-offset {
        margin-left: 0;
    }

    .cta-content-offset {
        margin-left: 0;
    }

    .contact-intro-offset {
        margin-left: 0;
    }

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

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