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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #34495E;
    background-color: #ECF0F1;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #2C3E50;
    color: #ECF0F1;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.nav-links a {
    color: #34495E;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 5% 80px 10%;
    position: relative;
    background-color: #ECF0F1;
}

.hero-content-offset {
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin-right: auto;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2C3E50;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #34495E;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    z-index: 1;
    background-color: #95A5A6;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #E67E22;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.intro-offset {
    display: flex;
    padding: 120px 5%;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-narrow {
    flex: 1;
    max-width: 600px;
    margin-left: 15%;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2C3E50;
}

.intro-image-small {
    flex: 0 0 400px;
    background-color: #95A5A6;
}

.intro-image-small img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 5%;
    background-color: #ECF0F1;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 8%;
}

.services-header-left h2 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.services-header-left p {
    font-size: 1.2rem;
    color: #34495E;
}

.services-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 30px);
    min-width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

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

.service-card.offset-right {
    margin-right: -30px;
}

.service-card.offset-top-small {
    margin-top: -20px;
}

.service-card.offset-bottom-small {
    margin-top: 20px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #95A5A6;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.service-content p {
    color: #34495E;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2C3E50;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #34495E;
}

.form-section-overlap {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 20%;
    background-color: #ECF0F1;
    padding: 60px;
    border-radius: 8px;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #BDC3C7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    background-color: #E67E22;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

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

.philosophy-section {
    padding: 120px 5%;
    background-color: #2C3E50;
}

.philosophy-content-split {
    display: flex;
    gap: 100px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    max-width: 600px;
    margin-left: 10%;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    color: #ECF0F1;
    margin-bottom: 30px;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #BDC3C7;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-visual {
    flex: 1;
    position: relative;
}

.visual-accent {
    width: 300px;
    height: 400px;
    background-color: #E67E22;
    transform: rotate(-5deg);
}

.footer-asymmetric {
    background-color: #34495E;
    color: #ECF0F1;
    padding: 80px 5% 30px 5%;
}

.footer-content-irregular {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col-offset {
    flex: 1;
    min-width: 250px;
    margin-top: -20px;
}

.footer-col-offset h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer-col-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-links a:hover {
    color: #E67E22;
}

.footer-col-disclaimer {
    flex: 2;
    min-width: 300px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95A5A6;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #95A5A6;
    padding-top: 30px;
    text-align: center;
    color: #95A5A6;
    font-size: 0.9rem;
}

.cookie-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-modal.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #ECF0F1;
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #E67E22;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #D35400;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #95A5A6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7F8C8D;
    transform: translateY(-2px);
}

.about-hero-offset {
    padding: 120px 5% 80px 15%;
    background-color: #ECF0F1;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-title-position {
    max-width: 700px;
}

.about-title-position h1 {
    font-size: 4rem;
    color: #2C3E50;
    margin-bottom: 30px;
}

.about-intro {
    font-size: 1.4rem;
    color: #34495E;
    line-height: 1.7;
}

.story-asymmetric {
    padding: 100px 5%;
    background-color: #ffffff;
}

.story-content-irregular {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.story-block-left h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.story-block-left p {
    font-size: 1.1rem;
    color: #34495E;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background-color: #95A5A6;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 100px 5%;
    background-color: #ECF0F1;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.value-card-offset-1,
.value-card-offset-2,
.value-card-offset-3 {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    width: calc(33.333% - 40px);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card-offset-1 {
    margin-top: -30px;
}

.value-card-offset-2 {
    margin-top: 30px;
}

.value-card-offset-3 {
    margin-top: -15px;
}

.value-card-offset-1 h3,
.value-card-offset-2 h3,
.value-card-offset-3 h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.value-card-offset-1 p,
.value-card-offset-2 p,
.value-card-offset-3 p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
}

.approach-split {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text-side {
    flex: 1;
    max-width: 600px;
    margin-right: 5%;
}

.approach-text-side h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.approach-text-side p {
    font-size: 1.1rem;
    color: #34495E;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-visual-side {
    flex: 1;
    background-color: #95A5A6;
}

.approach-visual-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.equipment-section {
    padding: 100px 5%;
    background-color: #2C3E50;
}

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

.equipment-content-narrow h2 {
    font-size: 2.8rem;
    color: #ECF0F1;
    margin-bottom: 30px;
}

.equipment-content-narrow p {
    font-size: 1.2rem;
    color: #BDC3C7;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-hero {
    padding: 120px 5% 80px 10%;
    background-color: #ECF0F1;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.services-header-offset {
    max-width: 700px;
}

.services-header-offset h1 {
    font-size: 4rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.services-header-offset p {
    font-size: 1.3rem;
    color: #34495E;
    line-height: 1.7;
}

.services-detailed-asymmetric {
    padding: 80px 5%;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px 0;
}

.service-detail-block.offset-pattern-1 {
    padding-left: 5%;
}

.service-detail-block.offset-pattern-2 {
    padding-right: 5%;
}

.service-detail-block.offset-pattern-3 {
    padding-left: 8%;
}

.service-detail-block.offset-pattern-4 {
    padding-right: 8%;
}

.service-detail-block.offset-pattern-5 {
    padding-left: 3%;
}

.service-detail-block.offset-pattern-6 {
    padding-right: 3%;
}

.service-detail-image {
    flex: 1;
    background-color: #95A5A6;
}

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

.service-detail-content {
    flex: 1;
    max-width: 500px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.15rem;
    color: #34495E;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price-box {
    background-color: #ECF0F1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #7F8C8D;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #E67E22;
}

.cta-service {
    display: inline-block;
    background-color: #2C3E50;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-service:hover {
    background-color: #34495E;
    transform: translateY(-2px);
}

.cta-section-offset {
    padding: 100px 5%;
    background-color: #E67E22;
}

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

.cta-content-irregular h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-irregular p {
    font-size: 1.3rem;
    color: #ECF0F1;
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #E67E22;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    cursor: pointer;
}

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

.contact-hero {
    padding: 120px 5% 80px 15%;
    background-color: #ECF0F1;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-header-left {
    max-width: 700px;
}

.contact-header-left h1 {
    font-size: 4rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-header-left p {
    font-size: 1.2rem;
    color: #34495E;
}

.contact-content-asymmetric {
    padding: 80px 5%;
    background-color: #ffffff;
}

.contact-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.contact-block {
    background-color: #ECF0F1;
    padding: 40px;
    border-radius: 8px;
    width: calc(50% - 30px);
    min-width: 300px;
}

.contact-block.offset-position-1 {
    margin-top: -30px;
}

.contact-block.offset-position-2 {
    margin-top: 30px;
}

.contact-block.offset-position-3 {
    margin-top: -15px;
}

.contact-block.offset-position-4 {
    margin-top: 15px;
}

.contact-block.offset-position-5 {
    margin-top: -25px;
}

.contact-block.offset-position-6 {
    margin-top: 25px;
}

.contact-block.offset-position-7 {
    margin-top: 0;
    width: 100%;
}

.contact-block h2 {
    font-size: 1.6rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
    margin-bottom: 10px;
}

.note {
    font-size: 0.9rem;
    color: #7F8C8D;
    font-style: italic;
    margin-top: 15px;
}

.link-text {
    color: #E67E22;
    text-decoration: underline;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background-color: #ECF0F1;
}

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

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-content-center h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #34495E;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-detail {
    font-size: 1.1rem;
    color: #E67E22;
    font-weight: 600;
    margin-bottom: 50px;
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.step-item p {
    font-size: 1.1rem;
    color: #34495E;
    line-height: 1.6;
    margin-top: 7px;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #2C3E50;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.legal-page {
    padding: 100px 5%;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #34495E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .floating-nav {
        right: 2%;
        padding: 20px;
    }

    .hero-title-large {
        font-size: 3.5rem;
    }

    .hero-image-overlap {
        width: 50%;
        top: 20%;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 5%;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .services-cards-irregular {
        justify-content: center;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .form-container-offset {
        margin-left: 10%;
    }

    .philosophy-content-split {
        flex-direction: column;
        gap: 50px;
    }

    .philosophy-text {
        margin-left: 0;
    }

    .footer-content-irregular {
        gap: 40px;
    }

    .story-content-irregular {
        flex-direction: column;
        gap: 50px;
    }

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

    .story-image-overlap {
        margin-top: 0;
    }

    .approach-split {
        flex-direction: column;
        gap: 50px;
    }

    .approach-text-side {
        margin-right: 0;
    }

    .service-detail-block {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-blocks {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        margin-top: 40px;
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-top-small,
    .service-card.offset-bottom-small {
        margin: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .philosophy-text h2 {
        font-size: 2rem;
    }

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

    .value-card-offset-1,
    .value-card-offset-2,
    .value-card-offset-3 {
        width: 100%;
        margin-top: 0;
    }

    .about-hero-offset {
        padding: 80px 5%;
    }

    .about-title-position h1 {
        font-size: 2.8rem;
    }

    .services-header-offset h1 {
        font-size: 2.8rem;
    }

    .contact-hero {
        padding: 80px 5%;
    }

    .contact-header-left h1 {
        font-size: 2.8rem;
    }

    .contact-block {
        width: 100%;
    }

    .contact-block.offset-position-1,
    .contact-block.offset-position-2,
    .contact-block.offset-position-3,
    .contact-block.offset-position-4,
    .contact-block.offset-position-5,
    .contact-block.offset-position-6 {
        margin-top: 0;
    }

    .thanks-content-center h1 {
        font-size: 2.2rem;
    }

    .thanks-next-steps {
        padding: 30px 20px;
    }

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}