/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Asymmetric */
.header-asymmetric {
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.nav-floating {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-floating a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-floating a:hover {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #757575;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1557b0;
}

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

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

/* Hero Asymmetric */
.hero-asymmetric {
    padding: 5rem 2rem 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    padding-left: 10%;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-image-overlap {
    flex: 1;
    min-width: 300px;
    position: relative;
    transform: translateY(-30px);
}

.hero-image-overlap img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-inline {
    color: #1a73e8;
    font-weight: 600;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 0.25rem;
}

.cta-inline:hover {
    color: #1557b0;
    border-bottom-color: #1557b0;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
}

.cta-large:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

/* Intro Offset */
.intro-offset {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.intro-left {
    flex: 1.2;
    min-width: 300px;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-right-pushed {
    flex: 1;
    min-width: 280px;
    transform: translateY(60px);
    padding: 2rem;
    background: #f8fafc;
    border-left: 4px solid #1a73e8;
}

/* Trust Block Staggered */
.trust-block-staggered {
    padding: 4rem 2rem;
    background: #fafbfc;
}

.trust-item {
    max-width: 500px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-item-1 {
    margin-left: 5%;
}

.trust-item-2 {
    margin-left: 30%;
}

.trust-item-3 {
    margin-left: 15%;
}

.trust-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

/* Services Grid Asymmetric */
.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem 10%;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    align-items: center;
    flex-wrap: wrap;
}

.service-card-push-left {
    margin-right: 20%;
}

.service-card-push-right {
    margin-left: 20%;
}

.service-card-center {
    margin: 0 auto;
    max-width: 900px;
}

.service-visual {
    flex: 1;
    min-width: 280px;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-info {
    flex: 1.5;
    padding: 2rem;
    min-width: 300px;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

/* Testimonial Overlap */
.testimonial-overlap {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-block-1 {
    transform: translateY(-20px);
}

.testimonial-block-2 {
    transform: translateY(40px);
}

.testimonial-block p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-block span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Floating Section */
.cta-floating-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.cta-content-offset {
    max-width: 800px;
    margin-left: 15%;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container-offset {
    max-width: 900px;
    margin-left: auto;
    margin-right: 10%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    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: #1a73e8;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff8e1;
    border-top: 3px solid #fbc02d;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5f4e00;
    line-height: 1.7;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #64b5f6;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block ul li a {
    color: #ecf0f1;
}

.footer-block ul li a:hover {
    color: #64b5f6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
}

.sticky-cta-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 115, 232, 0.5);
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e3e9f0 0%, #f5f7fa 100%);
}

.page-hero-content {
    max-width: 1200px;
    margin-left: 10%;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
}

/* About Intro Asymmetric */
.about-intro-asymmetric {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-block {
    flex: 1.5;
    min-width: 300px;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-image-overlap {
    flex: 1;
    min-width: 300px;
    transform: rotate(-2deg);
}

.about-image-overlap img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Values Staggered */
.values-staggered {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.values-staggered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.value-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.value-offset-1 {
    margin-left: 5%;
}

.value-offset-2 {
    margin-left: 25%;
}

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

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

/* Experience Section */
.experience-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.experience-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.experience-left {
    flex: 1.5;
    min-width: 300px;
}

.experience-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-left p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.experience-left ul {
    list-style: none;
    padding-left: 0;
}

.experience-left ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.experience-left ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.experience-right {
    flex: 1;
    min-width: 300px;
}

.experience-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Team Approach */
.team-approach {
    padding: 4rem 2rem;
    background: #f8fafc;
    text-align: center;
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-approach p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

/* CTA About Section */
.cta-about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    flex: 1.5;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a73e8;
}

/* Services CTA Section */
.services-cta-section {
    padding: 5rem 2rem;
    background: #f8fafc;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: #4a5568;
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.contact-detail p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
}

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

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Contact Approach Section */
.contact-approach-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

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

.contact-approach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-approach-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Location Info Section */
.location-info-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.location-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    background: #ffffff;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    color: #10b981;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-main-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.thanks-service-info {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: #e8f4fd;
    border-radius: 8px;
    color: #1a73e8;
}

.thanks-details {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.next-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.next-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #ffffff;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    color: #757575;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1557b0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text-block h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

    .intro-wrapper,
    .about-content-wrapper,
    .experience-layout,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .intro-right-pushed {
        transform: translateY(0);
    }

    .hero-image-overlap {
        transform: translateY(0);
    }

    .about-image-overlap {
        transform: rotate(0);
    }

    .service-card-push-left,
    .service-card-push-right {
        margin-left: 0;
        margin-right: 0;
    }

    .trust-item-1,
    .trust-item-2,
    .trust-item-3 {
        margin-left: 0;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3,
    .value-offset-4 {
        margin-left: 0;
    }

    .services-header-offset {
        margin-left: 0;
    }

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

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

    .page-hero-content {
        margin-left: 0;
    }

    .testimonial-block-1,
    .testimonial-block-2 {
        transform: translateY(0);
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .nav-floating {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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

    .service-layout-2 {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 1.75rem;
    }

    .cta-primary,
    .btn-primary,
    .cta-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}