:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

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

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

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

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

ul {
    list-style: none;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

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

main {
    padding-top: 100px;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-left: 8%;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -50px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 120px 10%;
    align-items: center;
    background: var(--bg-light);
}

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-visual {
    flex: 1;
    position: relative;
    transform: translateY(40px);
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 500px;
}

.visual-caption {
    padding: 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

.services-irregular {
    padding: 100px 5%;
    background: var(--bg-white);
}

.services-header-side {
    max-width: 500px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.services-header-side h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-header-side p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

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

.service-card-large {
    flex: 1 1 calc(50% - 15px);
    max-width: 550px;
}

.service-card-elevated {
    transform: translateY(-30px);
}

.service-card-wide {
    flex: 1 1 calc(66.666% - 20px);
    max-width: 650px;
}

.service-visual {
    background: var(--bg-light);
    height: 250px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    min-height: 500px;
    background: var(--primary-color);
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.testimonial-content blockquote {
    max-width: 500px;
}

.testimonial-content p {
    font-size: 22px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
}

.form-section-diagonal {
    padding: 100px 10%;
    background: var(--bg-light);
    position: relative;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg-light);
    transform: skewY(-2deg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-container p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.trust-elements {
    display: flex;
    gap: 50px;
    padding: 80px 10%;
    background: var(--bg-white);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 10%;
    background: var(--bg-light);
    border-top: 3px solid var(--border-color);
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.page-hero-offset {
    padding: 80px 10% 60px;
    background: var(--bg-light);
    text-align: left;
    margin-left: 5%;
}

.page-hero-offset h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story {
    display: flex;
    gap: 60px;
    padding: 100px 10%;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.story-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 450px;
}

.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 8%;
    background: var(--bg-light);
}

.value-block {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-large {
    flex: 1 1 calc(50% - 20px);
}

.value-elevated {
    transform: translateY(-25px);
}

.value-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.value-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.team-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.commitment-section {
    padding: 100px 15%;
    background: var(--bg-light);
}

.commitment-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.commitment-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-link:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.services-detail {
    padding: 60px 5%;
}

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

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

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.cta-section-services h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-section-services p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.contact-layout {
    display: flex;
    gap: 80px;
    padding: 80px 10%;
    align-items: start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

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

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

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

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image-accent {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(40px);
}

.contact-image-accent img {
    width: 100%;
    height: 500px;
}

.approach-section {
    padding: 80px 10%;
    background: var(--bg-light);
}

.approach-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.approach-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 350px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.location-note {
    padding: 60px 15%;
    text-align: center;
}

.location-note h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-note p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-hero {
    display: flex;
    gap: 60px;
    padding: 80px 10%;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.next-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

.thanks-visual {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 500px;
}

.legal-page {
    padding: 80px 15%;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

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

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 8px 0;
    list-style: disc;
}

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

.legal-content a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset,
    .about-story,
    .testimonial-split,
    .contact-layout,
    .thanks-hero {
        flex-direction: column;
    }

    .hero-content-offset {
        padding-left: 0;
    }

    .hero-image-overlap {
        margin-top: 0;
    }

    .intro-visual {
        transform: none;
    }

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

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

    .contact-image-accent {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding: 15px 20px;
        border-radius: 20px;
        gap: 20px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
    }

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

    .nav-toggle {
        display: block;
    }

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

    .page-hero-offset {
        margin-left: 0;
    }

    .page-hero-offset h1 {
        font-size: 38px;
    }

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

    .legal-page {
        padding: 60px 5%;
    }
}

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

    .service-card,
    .service-card-large,
    .service-card-wide {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .service-card-elevated {
        transform: none;
    }

    .form-container {
        padding: 30px 20px;
    }

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

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