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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 24px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #e74c3c;
    color: #ffffff;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.96);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 6px 14px;
    border-radius: 20px;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 40px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.hero-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 8%;
    background: rgba(255, 255, 255, 0.85);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

.hero-text-block p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #34495e;
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.intro-irregular {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.intro-right-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-offset {
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-offset:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-shift {
    margin-left: 60px;
}

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

.card-offset p {
    color: #7f8c8d;
    line-height: 1.6;
}

.services-asymmetric {
    padding: 120px 40px;
    background: #f8f9fa;
}

.section-header-irregular {
    max-width: 700px;
    margin: 0 0 80px 12%;
}

.section-header-irregular h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-irregular p {
    font-size: 19px;
    color: #7f8c8d;
}

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

.service-card {
    display: flex;
    gap: 48px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.service-card img {
    width: 420px;
    height: 320px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #34495e;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #34495e;
    transform: translateX(4px);
}

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

.service-card-right {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-card-center {
    margin-left: 5%;
}

.service-card-overlap {
    margin-left: 15%;
}

.service-card-bottom {
    margin-left: 3%;
    flex-direction: row-reverse;
}

.process-overlap {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 44px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    min-width: 60px;
}

.step p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.process-image {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.testimonials-scattered {
    padding: 120px 40px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.testimonials-scattered h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 15px;
    color: #bdc3c7;
}

.testimonial-left {
    margin-left: 0;
    max-width: 700px;
}

.testimonial-right {
    margin-left: auto;
    max-width: 700px;
}

.testimonial-center {
    margin-left: 15%;
    max-width: 650px;
}

.form-section-diagonal {
    padding: 120px 40px;
    background: #ecf0f1;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 0 0 18%;
    background: #ffffff;
    padding: 56px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.footer-irregular {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 80px 40px 40px;
}

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

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

.footer-col-wide {
    flex: 2;
    min-width: 320px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 24px;
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

.footer-column ul li a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 28px;
    background: rgba(236, 240, 241, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.about-hero-offset {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.about-text-block {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.about-text-block h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-story-irregular {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.story-content-right h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

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

.values-scattered h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

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

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}

.value-offset-1 {
    margin-left: 0;
}

.value-offset-2 {
    margin-left: auto;
}

.value-offset-3 {
    margin-left: 15%;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #7f8c8d;
}

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

.team-irregular h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: #7f8c8d;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    max-width: 500px;
}

.stat-left {
    margin-left: 0;
}

.stat-right {
    margin-left: auto;
}

.stat-center {
    margin-left: 20%;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 18px;
}

.cta-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.4);
}

.services-header-asymmetric {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.header-content-offset {
    max-width: 800px;
    margin: 0 0 0 12%;
}

.header-content-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.services-detailed-irregular {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-layout-2,
.service-layout-4 {
    flex-direction: row-reverse;
}

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

.service-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-text-wrap {
    flex: 1;
}

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

.service-text-wrap p {
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: #34495e;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

.btn-service-action {
    display: inline-block;
    padding: 14px 36px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background: #34495e;
    transform: translateX(4px);
}

.benefits-overlap {
    padding: 100px 40px;
    background: #f8f9fa;
}

.benefits-overlap h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

.cta-services-irregular {
    padding: 120px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
    color: #ffffff;
}

.cta-services-irregular h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta-services-irregular p {
    font-size: 19px;
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #ecf0f1;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.contact-header-diagonal {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: center;
    color: #ffffff;
}

.contact-header-diagonal h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-header-diagonal p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.contact-blocks {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 44px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

.contact-block-right {
    margin-left: auto;
    margin-top: 40px;
}

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

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

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #ecf0f1;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #7f8c8d;
}

.contact-note {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.contact-cta-offset {
    padding: 80px 40px;
    background: #ecf0f1;
    text-align: center;
}

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

.contact-cta-offset p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #7f8c8d;
}

.btn-contact-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-main {
    font-size: 19px;
    margin-bottom: 16px;
    color: #34495e;
}

.thanks-detail {
    font-size: 16px;
    margin-bottom: 32px;
    color: #7f8c8d;
    line-height: 1.7;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 36px;
}

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

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

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

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

.btn-back-home:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.btn-view-services:hover {
    background: #dfe6e9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

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

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

@media (max-width: 1024px) {
    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .intro-irregular,
    .about-story-irregular,
    .process-overlap,
    .service-detail,
    .contact-blocks {
        flex-direction: column;
    }

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

    .service-card img {
        width: 100%;
        height: 280px;
    }

    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .section-header-irregular {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .header-content-offset,
    .about-text-block {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 38px;
    }

    .section-header-irregular h2,
    .process-text h2,
    .values-scattered h2,
    .team-irregular h2,
    .benefits-overlap h2 {
        font-size: 32px;
    }

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

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

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

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

    .service-card-right,
    .service-card-overlap,
    .service-card-bottom,
    .service-card-center {
        margin-left: 0;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        margin-left: 0;
    }

    .value-offset-3,
    .stat-center {
        margin-left: 0;
    }

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