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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1f4538;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    padding: 28px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

.brand-offset {
    margin-left: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-floating a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-floating a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    padding: 6px 14px;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5% 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image-offset {
    flex: 1.2;
    position: relative;
    margin-top: -40px;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-diagonal {
    background-color: var(--bg-light);
    padding: 100px 5%;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.lead-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 600;
}

.services-staggered {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 70px;
    margin-left: 10%;
    color: var(--text-dark);
    font-weight: 800;
}

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

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

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 24px 0;
}

.btn-select {
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #6f5838;
}

.service-card-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: var(--bg-light);
}

.service-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-image-small {
    width: 100%;
    max-width: 600px;
    margin-bottom: 32px;
    background-color: var(--bg-white);
}

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

.testimonial-offset {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 5%;
    margin: 100px 0;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.85;
}

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.form-container-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    max-width: 400px;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.booking-form {
    flex: 1.5;
    background-color: var(--bg-light);
    padding: 50px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4538;
}

.trust-asymmetric {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.footer-stacked {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 5% 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    gap: 80px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 5%;
}

.about-content-offset {
    margin-left: 8%;
}

.about-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 50px;
    max-width: 700px;
    color: var(--text-dark);
    font-weight: 800;
}

.about-content-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.story-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.story-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-asymmetric {
    background-color: var(--bg-light);
    padding: 100px 5%;
    margin: 100px 0;
}

.values-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.team-intro {
    margin-bottom: 40px;
}

.team-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.approach-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 5%;
    margin: 100px 0 0;
}

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

.approach-content h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.services-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 5%;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-item:last-child {
    border-bottom: none;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-description h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-description p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-description ul {
    margin: 20px 0 20px 24px;
}

.service-description ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 28px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #6f5838;
}

.services-cta {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-contact {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #1f4538;
}

.contact-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 5%;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.contact-info-offset {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.contact-additional {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.contact-additional h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.help-grid {
    display: flex;
    gap: 50px;
}

.help-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
}

.help-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.help-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.visit-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.visit-section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.visit-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.visit-note {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
}

.visit-note p {
    margin: 0;
}

.thanks-hero {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: flex;
    gap: 70px;
    align-items: center;
}

.thanks-content {
    flex: 1.3;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.confirmation-details {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--bg-light);
}

.confirmation-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.7;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4538;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.thanks-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.while-you-wait {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.while-you-wait h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.while-you-wait > p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    gap: 40px;
}

.resource-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
}

.resource-item h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.resource-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 80px auto 100px;
    padding: 0 5%;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 32px;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .hero-image-offset {
        margin-top: 0;
        width: 100%;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
        gap: 30px;
    }

    .trust-grid,
    .help-grid,
    .resources-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }

    .story-container,
    .contact-info-offset,
    .form-container-asymmetric,
    .service-detail-item,
    .thanks-hero {
        flex-direction: column;
    }

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

    .approach-steps {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-floating {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.4rem;
    }

    .section-title-offset {
        font-size: 2.2rem;
        margin-left: 0;
    }

    .about-content-offset h1,
    .services-hero h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}