/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c4967f;
    --secondary-color: #8b6f5c;
    --dark-color: #2d2424;
    --light-color: #faf8f6;
    --text-color: #3a3a3a;
    --border-color: #e5e1dd;
    --accent-color: #d4a68d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--light-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

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

p {
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

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

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

/* Navigation */
.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Container Utilities */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wrapper.narrow {
    max-width: 900px;
}

.center {
    text-align: center;
}

/* Split Container - Core Archetype */
.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 500px;
}

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

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

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Hero Split */
.hero-split {
    background: linear-gradient(135deg, #faf8f6 0%, #f0ebe6 100%);
    padding: 6rem 2rem;
}

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

.hero-content {
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-image img {
    border-radius: 12px;
    transform: scale(1);
    transition: transform 0.6s ease;
}

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

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.cta-primary:hover,
.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 150, 127, 0.3);
}

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

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

.cta-primary.large {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
}

/* Intro Section */
.intro-section {
    background: white;
    padding: 5rem 2rem;
}

.intro-section h2 {
    margin-bottom: 1.5rem;
}

/* Why Professional Section */
.why-professional {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.text-content {
    padding: 2rem;
}

.text-content h2 {
    margin-bottom: 1.5rem;
}

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

/* Services Preview */
.services-preview {
    background: white;
    padding: 5rem 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

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

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

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.select-service:hover {
    background: var(--secondary-color);
}

/* Booking Section */
.booking-section {
    background: var(--light-color);
    padding: 5rem 2rem;
}

.booking-visual {
    position: relative;
}

.booking-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-container {
    padding: 2rem;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 150, 127, 0.1);
}

.btn-submit {
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 5rem 2rem;
}

.section-title {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.process-content {
    padding: 2rem;
}

.process-steps {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-text p {
    color: var(--text-color);
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: white;
}

/* CTA Final */
.cta-final,
.cta-section,
.booking-cta,
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    color: white;
}

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

.cta-container h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.cta-container .cta-primary:hover {
    background: var(--light-color);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(196, 150, 127, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 150, 127, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #faf8f6 0%, #f0ebe6 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero.small {
    padding: 4rem 2rem 3rem;
}

.page-hero h1 {
    font-size: 3rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* About Page Specific */
.about-intro {
    padding: 5rem 2rem;
    background: white;
}

.experience-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.experience-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.experience-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.experience-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.experience-item h3 {
    margin-bottom: 1rem;
}

.philosophy-section {
    padding: 5rem 2rem;
    background: white;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.education-section {
    padding: 5rem 2rem;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-content {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Services Page Specific */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-content {
    padding: 2rem;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.service-includes {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-note {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.service-extras {
    padding: 5rem 2rem;
    background: white;
}

.extras-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.extra-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

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

/* Contact Page Specific */
.contact-section {
    padding: 5rem 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item .note {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 36, 36, 0.85);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.transport-section {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.transport-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.transport-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.faq-section {
    padding: 5rem 2rem;
    background: white;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    stroke: var(--primary-color);
}

.thanks-content {
    margin-top: 2.5rem;
}

.service-confirmation {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.next-steps {
    margin: 3rem 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.thanks-note {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-section {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    background: white;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.cookie-reset {
    margin: 2rem 0;
    text-align: center;
}

#reset-cookies {
    padding: 1rem 2.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-btn {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .extras-grid,
    .transport-grid {
        flex-direction: column;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-split {
        padding: 4rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .split-container {
        gap: 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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