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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid #e67e22;
}

.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: 250px;
}

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

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

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

.btn-accept:hover {
    background: #d35400;
}

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    padding: 8px 20px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}

.header-asymmetric {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: -0.5px;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: 60px;
    margin-left: 8%;
    background: rgba(255, 255, 255, 0.97);
    transform: translateY(-40px);
}

.hero-title-layered {
    font-size: 62px;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 42px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid #e67e22;
}

.cta-hero:hover {
    background: transparent;
    color: #e67e22;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    transform: rotate(-2deg);
    box-shadow: -10px 20px 60px rgba(0,0,0,0.3);
    background: #95a5a6;
}

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

.intro-diagonal {
    padding: 120px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-block {
    flex: 1;
    transform: translateX(-30px);
}

.intro-lead {
    font-size: 24px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 300;
}

.intro-visual-offset {
    flex: 1;
    transform: translateY(30px) rotate(2deg);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    background: #bdc3c7;
}

.intro-visual-offset img {
    display: block;
    width: 100%;
}

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

.section-title-offset {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 70px;
    padding-left: 60px;
    position: relative;
}

.section-title-offset::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 4px;
    background: #e67e22;
}

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

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

.service-card-right {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background: #95a5a6;
}

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

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

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

.service-content p {
    color: #7f8c8d;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 36px;
    color: #e67e22;
    font-weight: 700;
    margin: 25px 0;
}

.select-service {
    padding: 14px 32px;
    background: #2c3e50;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.select-service:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.service-card-center {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    background: #ecf0f1;
    padding: 60px;
    transform: rotate(-1deg);
}

.service-content-full h3 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content-full p {
    color: #7f8c8d;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.form-section-offset {
    background: linear-gradient(to bottom right, #34495e, #2c3e50);
    padding: 100px 40px;
    position: relative;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 60px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.3);
    transform: rotate(1deg);
}

.form-container-asymmetric h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro {
    color: #7f8c8d;
    font-size: 17px;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #e67e22;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-scattered {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-scattered h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-offset-left,
.testimonial-offset-right {
    background: #ecf0f1;
    padding: 40px;
    margin-bottom: 50px;
    max-width: 700px;
    position: relative;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.08);
}

.testimonial-offset-left {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-20px) rotate(-0.5deg);
}

.testimonial-offset-right {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(20px) rotate(0.5deg);
}

.testimonial-offset-left p,
.testimonial-offset-right p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-offset-left cite,
.testimonial-offset-right cite {
    color: #7f8c8d;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.cta-diagonal {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.cta-diagonal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(-15deg);
}

.cta-content-offset {
    max-width: 800px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
}

.cta-content-offset h2 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content-offset p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #e67e22;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateX(5px);
}

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

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

.footer-block-offset {
    flex: 1;
    transform: translateY(-10px);
}

.footer-block-offset h3 {
    font-size: 28px;
    color: #e67e22;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(52, 73, 94, 0.5);
    border-left: 4px solid #e67e22;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        margin-left: 5%;
        padding: 40px;
    }

    .hero-title-layered {
        font-size: 48px;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 80px 40px;
    }

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

    .footer-content-staggered {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-offset {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        min-height: 70vh;
        flex-direction: column;
    }

    .hero-content-offset {
        margin-left: 0;
        transform: none;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        transform: none;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 40px 30px;
        transform: none;
    }

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

.about-hero-offset {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 60px;
}

.about-content-diagonal {
    max-width: 900px;
    margin-left: 10%;
    color: #fff;
}

.about-content-diagonal h1 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-intro {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

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

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

.story-block-left h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.story-image-right {
    flex: 1;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.15);
    background: #95a5a6;
}

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

.philosophy-stacked {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item-offset {
    margin-bottom: 70px;
    padding: 40px;
    background: #ecf0f1;
    transform: translateX(-20px);
}

.philosophy-item-offset:nth-child(even) {
    transform: translateX(20px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.philosophy-item-offset h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.philosophy-item-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
}

.team-asymmetric {
    background: #2c3e50;
    padding: 100px 60px;
}

.team-asymmetric h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.team-content-scattered {
    max-width: 1000px;
    margin: 0 auto;
}

.team-content-scattered p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.values-diagonal {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.values-list li {
    font-size: 19px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 32px;
    line-height: 1;
}

.credentials-offset {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto 80px 10%;
    background: #ecf0f1;
}

.credentials-offset h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.credentials-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.services-header-diagonal {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 100px 60px;
    text-align: center;
}

.services-header-diagonal h1 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 20px;
}

.services-lead {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-offset-left,
.service-detail-offset-right {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 120px;
}

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background: #95a5a6;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-detail-price {
    font-size: 32px;
    color: #e67e22;
    font-weight: 700;
    margin: 15px 0 25px 0;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

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

.service-detail-center {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px;
    background: #ecf0f1;
    text-align: center;
}

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

.service-detail-columns {
    display: flex;
    gap: 50px;
    margin: 30px 0;
    text-align: left;
}

.service-column {
    flex: 1;
}

.services-process {
    background: #2c3e50;
    padding: 100px 60px;
}

.services-process h2 {
    font-size: 48px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps-staggered {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    transform: translateX(-20px);
}

.process-step:nth-child(even) {
    transform: translateX(20px);
}

.process-step h3 {
    font-size: 24px;
    color: #e67e22;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.services-cta-offset {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-offset h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-cta-offset p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 35px;
}

.cta-services {
    display: inline-block;
    padding: 18px 45px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-services:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.contact-header-asymmetric {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 60px;
    text-align: center;
}

.contact-header-asymmetric h1 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
}

.contact-content-offset {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #e67e22;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
}

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background: #ecf0f1;
}

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

.contact-visual-offset {
    flex: 1;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.15);
    background: #95a5a6;
    transform: translateY(30px);
}

.contact-visual-offset img {
    display: block;
    width: 100%;
}

.contact-approach {
    padding: 100px 60px;
    background: #ecf0f1;
}

.contact-approach h2 {
    font-size: 48px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 22px;
    color: #e67e22;
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.contact-faq-offset {
    padding: 100px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq-offset h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item {
    padding: 30px;
    background: #ecf0f1;
    transform: translateX(-15px);
}

.faq-item:nth-child(even) {
    transform: translateX(15px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.thanks-section-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.thanks-content-offset {
    flex: 1;
}

.thanks-content-offset h1 {
    font-size: 58px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 22px;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.thanks-next-steps {
    margin-bottom: 50px;
    padding: 35px;
    background: #ecf0f1;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 15px;
}

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

.btn-primary-thanks {
    padding: 16px 35px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-thanks:hover {
    background: #d35400;
}

.btn-secondary-thanks {
    padding: 16px 35px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.btn-secondary-thanks:hover {
    background: #2c3e50;
    color: #fff;
}

.thanks-visual-offset {
    flex: 1;
    max-width: 500px;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.15);
    background: #95a5a6;
}

.thanks-visual-offset img {
    display: block;
    width: 100%;
}

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

.legal-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0 20px 25px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.legal-section a {
    color: #e67e22;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .about-story-asymmetric,
    .contact-content-offset,
    .thanks-section-asymmetric {
        flex-direction: column;
    }

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

    .service-detail-columns {
        flex-direction: column;
    }
}