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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-dark);
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.btn-accept:hover {
    background: #3a7050;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: #3a7050;
    border-color: #3a7050;
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.alternating-section,
.value-split {
    padding: 100px 0;
}

.alternating-section {
    background: var(--bg-white);
}

.value-split {
    background: var(--bg-light);
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-image,
.split-text {
    flex: 1;
}

.split-image {
    overflow: hidden;
}

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

.split-text {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.testimonial-block {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    border: none;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.highlight-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.highlight-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.experience-showcase {
    background: var(--bg-light);
}

.showcase-split {
    display: flex;
}

.showcase-image,
.showcase-content {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.showcase-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-section-mid {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta-section-mid h2,
.cta-section-mid p {
    color: white;
}

.cta-section-mid .cta-secondary {
    background: white;
    color: var(--secondary-color);
    border-color: white;
}

.cta-section-mid .cta-secondary:hover {
    background: var(--bg-light);
}

.services-overview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

.btn-select:hover {
    background: #3a7050;
}

.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 60px 80px;
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2,
.form-left p {
    color: white;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    padding: 12px 0 12px 30px;
    position: relative;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.form-right {
    padding: 60px 80px;
    background: var(--bg-white);
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, serif;
    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 {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-submit:hover {
    background: #3a7050;
}

.trust-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.final-cta {
    padding: 120px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 16px 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #a0521a;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.page-header {
    padding: 80px 20px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

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

.services-detailed {
    padding: 80px 20px;
    background: var(--bg-white);
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-features {
    list-style: none;
    margin: 25px 0 35px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.services-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.services-cta h2,
.services-cta p {
    color: white;
}

.services-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-split,
.team-section {
    padding: 80px 0;
}

.about-split {
    background: var(--bg-white);
}

.team-section {
    background: var(--bg-light);
}

.mission-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.mission-section h2,
.mission-section p {
    color: white;
}

.mission-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-top: 4px solid var(--primary-color);
}

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

.impact-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.impact-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.impact-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 40px;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.impact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-about {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-about h2,
.cta-about p {
    color: white;
}

.cta-about p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.contact-info,
.contact-cta {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.contact-cta {
    padding: 50px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 4px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
    min-height: 70vh;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

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

.service-confirmation {
    margin: 40px 0;
}

.selected-service {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.selected-service h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.step {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 4px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #3a7050;
    border-color: #3a7050;
}

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

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

.thanks-contact {
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 4px;
}

.thanks-contact p {
    margin-bottom: 10px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-content h1 {
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-left {
        padding: 60px 30px;
    }

    .hero-right img {
        min-height: 400px;
    }

    .split-container,
    .showcase-split,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .split-text,
    .showcase-content,
    .form-left,
    .form-right {
        padding: 50px 30px;
    }

    .service-detail-split {
        flex-direction: column;
        gap: 30px;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .features-grid,
    .values-grid,
    .services-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-left {
        padding: 40px 20px;
    }

    .split-text,
    .showcase-content,
    .form-left,
    .form-right {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .testimonial-block blockquote {
        font-size: 1.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

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

    .step {
        flex: 1 1 100%;
    }

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

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