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

:root {
    --primary: #1a1a1a;
    --secondary: #4a4a4a;
    --accent: #8b7355;
    --light: #f8f6f3;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-story {
    padding: 120px 20px;
    background: var(--light);
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--secondary);
}

.visual-break {
    height: 70vh;
    overflow: hidden;
}

.visual-break img,
.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break-alt {
    height: 60vh;
    overflow: hidden;
}

.insight-section {
    padding: 140px 20px;
    background: var(--white);
}

.insight-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--secondary);
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.trust-build {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    margin-bottom: 64px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent);
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.testimonial-inline {
    padding: 100px 20px;
    background: var(--accent);
    color: var(--white);
}

.testimonial-quote {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    border: none;
}

.testimonial-quote cite {
    display: block;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.8;
}

.services-preview {
    padding: 120px 20px;
    background: var(--light);
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-intro {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 64px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.cta-inline {
    padding: 80px 20px;
    background: var(--white);
}

.cta-box {
    background: var(--primary);
    color: var(--white);
    padding: 64px 48px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #6f5d47;
}

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

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

.social-proof {
    padding: 100px 20px;
    background: var(--light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--secondary);
}

.testimonial-item cite {
    font-style: normal;
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
}

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

.urgency-box {
    background: #fff5e6;
    padding: 48px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.urgency-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--secondary);
}

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

.urgency-list li {
    font-size: 17px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.urgency-list li:last-child {
    border-bottom: none;
}

.form-section {
    padding: 120px 20px;
    background: var(--light);
}

.form-title {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary);
}

.order-form {
    background: var(--white);
    padding: 48px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

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

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

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

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

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

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 64px 20px 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px var(--shadow);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-cookie {
    background: var(--accent);
    color: var(--white);
}

.btn-cookie:hover {
    background: #6f5d47;
}

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

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

.page-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: var(--light);
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 22px;
    color: var(--secondary);
    line-height: 1.6;
}

.about-story {
    padding: 100px 20px;
    background: var(--white);
}

.story-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-role {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary);
}

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

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

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

.services-full {
    padding: 80px 20px;
}

.service-full {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
    background: var(--white);
    padding: 48px;
    border-radius: 8px;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-full.premium-service {
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e6e3 100%);
}

.service-full-image {
    flex: 1;
}

.service-full-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.service-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-full-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-description {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-full-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--secondary);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--secondary);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

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

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--accent);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary);
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-note {
    background: var(--light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-caption {
    font-size: 14px;
    color: var(--secondary);
    margin-top: 12px;
    font-style: italic;
}

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

.visit-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.visit-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--secondary);
}

.visit-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: var(--light);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 32px;
}

#service-selected {
    font-size: 18px;
    margin-bottom: 48px;
    color: var(--accent);
    font-weight: 600;
}

.thanks-info {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

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

.thanks-steps li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--secondary);
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-extra {
    padding: 80px 20px;
    background: var(--white);
}

.thanks-extra h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.thanks-tips {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.tip-item {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 32px;
    border-radius: 8px;
}

.tip-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tip-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 16px;
}

.tip-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.tip-item a:hover {
    opacity: 0.7;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 20px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-update {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--secondary);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--secondary);
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .insight-grid {
        flex-direction: column;
        gap: 48px;
    }

    .story-layout {
        flex-direction: column;
    }

    .service-full {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .lead-text {
        font-size: 20px;
    }

    .section-title,
    .section-title-center {
        font-size: 36px;
    }

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

    .testimonial-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .order-form {
        padding: 32px 24px;
    }

    .service-full {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
    }

    .trust-card {
        min-width: 100%;
    }

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

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