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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #e8e4d9;
    color: #4a4a4a;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #d4cfc0;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 7%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 7%;
    gap: 60px;
    background: linear-gradient(135deg, #f4f6f1 0%, #ffffff 100%);
}

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

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: 40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #d9e7d1;
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 7% 80px 15%;
    align-items: flex-start;
    background-color: #fff;
}

.intro-block-offset {
    flex: 1.2;
    padding-right: 40px;
}

.intro-block-offset h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-visual-card {
    flex: 1;
    margin-top: 60px;
    background-color: #f9faf7;
    padding: 20px;
    border-radius: 8px;
}

.intro-visual-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 16px;
    object-fit: cover;
    background-color: #d9e7d1;
}

.caption {
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.problem-overlap {
    display: flex;
    align-items: center;
    padding: 80px 7%;
    gap: 0;
    background-color: #fafaf8;
    position: relative;
}

.overlap-image-left {
    flex: 1;
    z-index: 2;
    margin-right: -80px;
}

.overlap-image-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background-color: #d9e7d1;
}

.overlap-text-right {
    flex: 1;
    background-color: #fff;
    padding: 60px 60px 60px 120px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.overlap-text-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
    font-weight: 700;
}

.overlap-text-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.services-cards-irregular {
    padding: 100px 7%;
    background-color: #fff;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    padding-left: 8%;
    font-weight: 700;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background-color: #fafaf8;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 320px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 260px;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2d5016;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 24px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 24px 16px;
}

.service-card button {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.service-card button:hover {
    background-color: #234110;
    cursor: pointer;
}

.form-section-diagonal {
    padding: 100px 7%;
    background: linear-gradient(160deg, #e8ede3 0%, #f4f6f1 50%, #fff 100%);
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
    padding-top: 40px;
}

.form-intro-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-form-offset {
    flex: 1;
    background-color: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
}

.contact-form-offset input,
.contact-form-offset select,
.contact-form-offset textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form-offset input:focus,
.contact-form-offset select:focus,
.contact-form-offset textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.contact-form-offset textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #234110;
    cursor: pointer;
    transform: translateY(-2px);
}

.trust-staggered {
    display: flex;
    gap: 50px;
    padding: 80px 7%;
    background-color: #2d5016;
    justify-content: center;
    align-items: flex-start;
}

.trust-card {
    text-align: center;
    color: #fff;
    max-width: 280px;
}

.trust-left {
    margin-top: 0;
}

.trust-center {
    margin-top: 30px;
}

.trust-right {
    margin-top: 60px;
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.9;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 7% 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col-left {
    flex: 1;
    min-width: 240px;
}

.footer-col-left h5 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col-left p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-col-center {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-center a,
.footer-col-right a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col-center a:hover,
.footer-col-right a:hover {
    color: #8fb878;
}

.footer-col-right {
    flex: 0.5;
    min-width: 180px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 28px 7%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8fb878;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2d5016;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #234110;
    cursor: pointer;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #444;
    cursor: pointer;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.about-image-block {
    flex: 1;
    background-color: #d9e7d1;
}

.about-image-block img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.about-text-block {
    flex: 1;
    padding: 80px 100px 80px 80px;
    background-color: #fafaf8;
}

.about-text-block h1 {
    font-size: 46px;
    margin-bottom: 32px;
    color: #1a1a1a;
    line-height: 1.2;
    font-weight: 800;
}

.about-text-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.philosophy-offset {
    display: flex;
    gap: 80px;
    padding: 100px 12% 100px 7%;
    background-color: #fff;
}

.philosophy-content-left {
    flex: 1.3;
}

.philosophy-content-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5016;
    font-weight: 700;
}

.philosophy-content-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-card-right {
    flex: 1;
    background-color: #f4f6f1;
    padding: 28px;
    border-radius: 10px;
    margin-top: 60px;
}

.philosophy-card-right img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #d9e7d1;
}

.highlight-text {
    font-size: 18px;
    color: #2d5016;
    font-weight: 600;
    text-align: center;
}

.team-irregular {
    padding: 100px 7%;
    background-color: #fafaf8;
}

.team-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.team-layout-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text-large {
    flex: 1.5;
    padding-right: 40px;
}

.team-text-large p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.team-image-small {
    flex: 1;
}

.team-image-small img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #d9e7d1;
}

.values-stacked {
    padding: 100px 15% 100px 7%;
    background-color: #fff;
}

.values-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-block {
    margin-bottom: 50px;
    padding: 36px;
    background-color: #f9faf7;
    border-left: 5px solid #2d5016;
    border-radius: 6px;
}

.value-one {
    margin-left: 0;
}

.value-two {
    margin-left: 80px;
}

.value-three {
    margin-left: 40px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5016;
    font-weight: 700;
}

.value-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-about-diagonal {
    padding: 100px 7%;
    background: linear-gradient(135deg, #2d5016 0%, #1f3a10 100%);
    text-align: center;
    color: #fff;
}

.cta-about-diagonal h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-diagonal p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2d5016;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-hero-offset {
    padding: 100px 7% 60px 15%;
    background-color: #f4f6f1;
}

.services-hero-offset h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.services-intro {
    font-size: 19px;
    color: #555;
    max-width: 700px;
}

.service-detail-asymmetric {
    padding: 80px 7%;
    background-color: #fff;
}

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

.card-left {
    flex-direction: row;
}

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

.card-center {
    flex-direction: column;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-card img {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d9e7d1;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2d5016;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.price-block {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 20px;
}

.service-detail-content button {
    padding: 14px 32px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.service-detail-content button:hover {
    background-color: #234110;
    cursor: pointer;
}

.services-process-diagonal {
    padding: 100px 7%;
    background: linear-gradient(140deg, #e8ede3 0%, #fff 100%);
}

.services-process-diagonal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

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

.process-step {
    background-color: #fff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 280px;
}

.step-one {
    margin-top: 0;
}

.step-two {
    margin-top: 40px;
}

.step-three {
    margin-top: 20px;
}

.step-four {
    margin-top: 60px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d5016;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.services-cta-offset {
    padding: 100px 7%;
    background-color: #2d5016;
    text-align: center;
}

.services-cta-offset h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 36px;
    font-weight: 700;
}

.impressum-section {
    padding: 100px 7%;
    background-color: #fafaf8;
}

.impressum-section h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 800;
}

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

.impressum-block {
    background-color: #fff;
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.impressum-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2d5016;
    font-weight: 700;
}

.impressum-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #2d5016;
    font-weight: 600;
}

.impressum-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.impressum-block strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-note,
.tax-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.impressum-block a {
    color: #2d5016;
    text-decoration: underline;
}

.thanks-section-centered {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    background: linear-gradient(135deg, #f4f6f1 0%, #fff 100%);
}

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

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

.thanks-content-offset h1 {
    font-size: 44px;
    color: #2d5016;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-main-text {
    font-size: 19px;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.8;
}

.thanks-service-info {
    background-color: #e8ede3;
    padding: 20px 28px;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 17px;
    color: #2d5016;
    font-weight: 600;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-list-offset {
    text-align: left;
    max-width: 640px;
    margin: 0 auto 48px;
}

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

.step-item strong {
    display: block;
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2d5016;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2d5016;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #fff;
}

.thanks-contact-note {
    padding-top: 32px;
    border-top: 1px solid #ddd;
}

.thanks-contact-note p {
    font-size: 15px;
    color: #666;
}

.legal-page-content {
    padding: 100px 7%;
    background-color: #fafaf8;
}

.legal-page-content h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 800;
}

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

.legal-block {
    background-color: #fff;
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5016;
    font-weight: 700;
}

.legal-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #2d5016;
    font-weight: 600;
}

.legal-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-block ul,
.legal-block ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-block li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-block strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-block a {
    color: #2d5016;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookie-table thead {
    background-color: #f4f6f1;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: #2d5016;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-image-right {
        margin-left: 0;
        width: 100%;
    }

    .intro-asymmetric,
    .philosophy-offset,
    .team-layout-asymmetric,
    .form-section-diagonal {
        flex-direction: column;
    }

    .problem-overlap {
        flex-direction: column;
        gap: 40px;
    }

    .overlap-image-left {
        margin-right: 0;
    }

    .overlap-text-right {
        padding: 40px;
    }

    .service-grid-asymmetric {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-detail-card img {
        max-width: 100%;
    }

    .trust-staggered {
        flex-direction: column;
        align-items: center;
    }

    .trust-card {
        margin-top: 0 !important;
    }

    .about-hero-split {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-content-left h1 {
        font-size: 36px;
    }

    .section-title-offset {
        font-size: 32px;
        padding-left: 0;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

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