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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #2c2c2c;
    --light-bg: #f8f5f2;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --gray: #666666;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--accent-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.main-header {
    position: relative;
    height: 120px;
    background-color: var(--dark-bg);
    color: var(--white);
}

.header-overlay {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-block h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 0;
}

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

.ad-notice {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 1rem;
}

.floating-nav a {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    position: relative;
    padding: 0.5rem 0;
}

.floating-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.asymmetric-layout {
    overflow: hidden;
}

.hero-offset {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-color: #2a2a2a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    background-color: var(--white);
    padding: 4rem 3rem;
    margin-left: 8%;
    margin-top: 3rem;
    box-shadow: 8px 8px 30px rgba(0,0,0,0.15);
}

.hero-text-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-preview-irregular {
    padding: 6rem 5% 8rem;
    background-color: var(--light-bg);
}

.service-card {
    display: flex;
    margin-bottom: 6rem;
    align-items: center;
    gap: 3rem;
}

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

.service-card.offset-right {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-card.offset-center {
    margin-left: 15%;
    margin-right: 15%;
}

.card-image {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

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

.card-content {
    flex: 1;
    padding: 2rem;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-color);
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.philosophy-diagonal {
    display: flex;
    min-height: 70vh;
    position: relative;
    margin-bottom: 8rem;
}

.diagonal-content {
    flex: 1;
    padding: 5rem 8% 5rem 10%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diagonal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.diagonal-image {
    flex: 1;
    position: relative;
    background-color: #1a1a1a;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.diagonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-section-overlay {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8rem;
}

.booking-overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #232323;
}

.booking-overlay-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.booking-form-container {
    position: relative;
    z-index: 10;
    max-width: 550px;
    background-color: var(--white);
    padding: 4rem 3rem;
    margin-right: 10%;
    box-shadow: -8px 8px 30px rgba(0,0,0,0.15);
}

.booking-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-form-container > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trust-elements-stacked {
    padding: 6rem 10%;
    background-color: var(--white);
}

.trust-block {
    margin-bottom: 4rem;
    padding-left: 8%;
}

.trust-block:nth-child(2) {
    padding-left: 20%;
    padding-right: 15%;
}

.trust-block:nth-child(3) {
    padding-left: 15%;
    padding-right: 8%;
}

.trust-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.95rem;
}

.additional-services-split {
    display: flex;
    min-height: 70vh;
    background-color: var(--light-bg);
    margin-bottom: 8rem;
}

.split-content-left {
    flex: 1;
    padding: 5rem 5% 5rem 10%;
}

.split-content-left h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.service-list-custom {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-item p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.split-image-right {
    flex: 1;
    background-color: #282828;
}

.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-offset {
    padding: 8rem 10%;
    background-color: var(--white);
}

.cta-content-block {
    max-width: 700px;
    margin-left: 15%;
    padding: 3rem 0;
}

.cta-content-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 8% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-column p,
.footer-column a {
    color: #cccccc;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    border-top: 1px solid #444444;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
}

.about-page .about-hero-diagonal {
    display: flex;
    min-height: 60vh;
    align-items: center;
    margin-bottom: 6rem;
    gap: 3rem;
    padding: 4rem 8%;
}

.diagonal-text-block {
    flex: 1;
    padding-right: 3rem;
}

.diagonal-image-block {
    flex: 1;
    min-height: 500px;
    background-color: #1c1c1c;
}

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

.story-flow {
    padding: 4rem 8%;
}

.story-block {
    margin-bottom: 5rem;
}

.story-block.offset-style {
    margin-left: 5%;
    max-width: 80%;
}

.story-block.offset-reverse {
    margin-left: 15%;
    max-width: 70%;
}

.story-block.offset-center-style {
    margin-left: 10%;
    max-width: 75%;
}

.story-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-irregular {
    padding: 6rem 8%;
    background-color: var(--light-bg);
}

.values-irregular h2 {
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: var(--white);
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card.offset-down {
    margin-top: 3rem;
}

.value-card.offset-up {
    margin-top: -2rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section-split {
    padding: 5rem 8%;
    background-color: var(--white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.cta-inline-offset {
    padding: 6rem 8%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.services-page .services-intro-offset {
    padding: 5rem 10% 3rem 15%;
    background-color: var(--light-bg);
}

.services-intro-offset h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 900px;
}

.service-detail-asymmetric {
    padding: 4rem 5%;
}

.service-block {
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-block.left-emphasis {
    margin-left: 5%;
}

.service-block.right-emphasis {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-block.center-emphasis {
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
}

.service-block.minimal-style {
    background-color: var(--light-bg);
    padding: 2rem 5%;
    margin-left: 20%;
    margin-right: 20%;
    flex-direction: column;
}

.service-content-main {
    flex: 1;
    padding: 2rem;
}

.service-content-full {
    width: 100%;
    padding: 2rem 5%;
}

.service-content-compact {
    text-align: center;
    padding: 1.5rem;
}

.service-duration {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 1rem;
}

.service-image-side {
    flex: 1;
    min-height: 400px;
    background-color: #2a2a2a;
}

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

.service-image-inline {
    width: 100%;
    min-height: 350px;
    margin-top: 2rem;
    background-color: #262626;
}

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

.price-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
}

.price-large {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 0.5rem;
}

.price-medium {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.price-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.price-block-inline {
    margin-top: 1rem;
}

.booking-cta-services {
    padding: 5rem 8%;
    background-color: var(--dark-bg);
    text-align: center;
}

.cta-box-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-box-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-box-offset p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-page .contact-intro-irregular {
    padding: 5rem 10% 3rem 12%;
    background-color: var(--light-bg);
}

.intro-large {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 900px;
}

.contact-details-offset {
    padding: 5rem 8%;
}

.contact-info-block {
    margin-bottom: 4rem;
}

.contact-info-block.left-position {
    margin-left: 5%;
    max-width: 600px;
}

.contact-info-block.right-position {
    margin-left: 20%;
    max-width: 700px;
}

.contact-info-block.center-position {
    margin-left: 10%;
    max-width: 650px;
}

.contact-info-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background-color: var(--light-bg);
}

.day {
    font-weight: 600;
    color: var(--primary-color);
}

.time {
    color: var(--text-color);
}

.hours-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

.email-display {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.response-time {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.location-info-asymmetric {
    padding: 4rem 8%;
    background-color: var(--light-bg);
}

.location-text-offset {
    max-width: 800px;
    margin-left: 15%;
    padding: 2rem 0;
}

.location-text-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-note-diagonal {
    padding: 5rem 10%;
    background-color: var(--white);
}

.note-content {
    max-width: 850px;
    margin-left: 8%;
    padding: 3rem;
    border-left: 6px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.note-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-page .thanks-hero-center {
    padding: 8rem 10%;
    background-color: var(--light-bg);
    text-align: center;
}

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

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    color: var(--gray);
    margin-top: 1rem;
}

.what-next-offset {
    padding: 5rem 8%;
    display: flex;
    gap: 4rem;
}

.info-block-left,
.info-block-right {
    flex: 1;
    padding: 2rem;
}

.info-block-left {
    margin-left: 5%;
}

.info-block-right {
    margin-right: 5%;
}

.info-block-left h2,
.info-block-right h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.steps-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.return-navigation {
    padding: 3rem 8%;
    text-align: center;
}

.btn-return {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.legal-page {
    padding: 5rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

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

.cookie-table thead {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.cookie-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-overlay {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .floating-nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-text-offset {
        margin: -3rem 5% 2rem;
    }

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

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

    .philosophy-diagonal,
    .additional-services-split {
        flex-direction: column;
    }

    .diagonal-image {
        clip-path: none;
        min-height: 300px;
    }

    .booking-section-overlay {
        flex-direction: column;
    }

    .booking-overlay-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .booking-form-container {
        margin: -3rem 5% 2rem;
    }

    .footer-content,
    .what-next-offset {
        flex-direction: column;
    }

    .cta-inline-offset {
        flex-direction: column;
    }
}
