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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 0 40px;
    border-radius: 12px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1e3a8a;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-asymmetric {
    margin-top: 140px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #e8f4f8;
}

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

.hero-text-overlap {
    position: relative;
    z-index: 10;
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-left: 40px;
}

.hero-text-overlap h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.hero-text-overlap p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #152e6e;
}

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.intro-text-block {
    flex: 1;
    padding-left: 100px;
}

.intro-text-block h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 28px;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.intro-visual-small {
    width: 400px;
    margin-top: -60px;
    background-color: #d1e7f0;
}

.intro-visual-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-stagger {
    padding: 140px 60px 100px;
    background-color: #ffffff;
}

.section-title-left {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 60px;
    margin-left: 60px;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    width: calc(33.333% - 27px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-top: 20px;
}

.service-card.offset-4 {
    margin-top: 60px;
}

.service-card.offset-5 {
    margin-top: 30px;
}

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

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    padding: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    padding: 0 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    padding: 0 24px 16px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #152e6e;
}

.benefits-overlap {
    position: relative;
    padding: 100px 60px;
    min-height: 500px;
}

.benefits-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #1e3a8a;
}

.benefits-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.benefits-content h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.benefits-list-irregular {
    list-style: none;
}

.benefits-list-irregular li {
    font-size: 18px;
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: #2c3e50;
}

.benefits-list-irregular li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 24px;
}

.form-section-diagonal {
    position: relative;
    padding: 120px 60px;
    background-color: #f8f9fa;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-wrapper-offset {
    flex: 1;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.form-wrapper-offset h2 {
    font-size: 38px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.btn-submit {
    padding: 16px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #152e6e;
}

.form-image-overlap {
    width: 450px;
    margin-top: -100px;
    background-color: #d1e7f0;
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.process-irregular {
    padding: 100px 60px;
    background-color: #ffffff;
}

.process-irregular h2 {
    font-size: 48px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 80px;
}

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

.step {
    width: calc(50% - 30px);
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #1e3a8a;
    position: relative;
}

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

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

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

.step.step-4 {
    margin-top: 80px;
}

.step-number {
    font-size: 56px;
    font-weight: 700;
    color: #e0e0e0;
    position: absolute;
    top: 20px;
    right: 40px;
}

.step h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.step p {
    font-size: 18px;
    color: #546e7a;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col h3 {
    font-size: 28px;
}

.footer-col h4 {
    font-size: 18px;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #0f0f0f;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888888;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px 60px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

.cookie-content a {
    color: #1e3a8a;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #1e3a8a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #152e6e;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2c3e50;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.about-hero-split {
    margin-top: 140px;
    display: flex;
    min-height: 500px;
}

.about-text-side {
    flex: 1;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.about-text-side h1 {
    font-size: 56px;
    color: #1e3a8a;
    margin-bottom: 28px;
}

.about-text-side p {
    font-size: 22px;
    color: #546e7a;
    line-height: 1.7;
}

.about-image-side {
    flex: 1;
    background-color: #d1e7f0;
}

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

.about-story-offset {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-content {
    flex: 1.5;
    padding-right: 60px;
}

.story-content h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.story-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-highlight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background-color: #1e3a8a;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #b8d4f1;
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 60px;
    text-align: center;
}

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

.value-item {
    width: calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item.value-1 {
    margin-top: 0;
}

.value-item.value-2 {
    margin-top: 40px;
}

.value-item.value-3 {
    margin-top: 20px;
}

.value-item.value-4 {
    margin-top: 60px;
}

.value-item h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.team-section-irregular {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-content {
    flex: 1.5;
}

.approach-content h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.approach-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    background-color: #d1e7f0;
}

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

.cta-about-section {
    padding: 100px 60px;
    background-color: #1e3a8a;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-about-content p {
    font-size: 20px;
    color: #b8d4f1;
    margin-bottom: 40px;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #1e3a8a;
}

.cta-about-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-header-diagonal {
    margin-top: 140px;
    padding: 100px 60px 80px;
    background-color: #f8f9fa;
}

.services-header-diagonal h1 {
    font-size: 56px;
    color: #1e3a8a;
    margin-bottom: 24px;
    max-width: 800px;
}

.services-header-diagonal p {
    font-size: 22px;
    color: #546e7a;
    max-width: 700px;
}

.service-detail-section {
    padding: 60px 60px 120px;
}

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

.service-detail-1,
.service-detail-3,
.service-detail-5 {
    flex-direction: row;
}

.service-detail-2,
.service-detail-4,
.service-detail-6 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #d1e7f0;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    font-size: 17px;
    color: #2c3e50;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.consultation-cta-offset {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.consultation-content h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.consultation-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header-offset {
    margin-top: 140px;
    padding: 80px 60px;
    background-color: #1e3a8a;
    color: #ffffff;
}

.contact-header-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-header-offset p {
    font-size: 22px;
    color: #b8d4f1;
}

.contact-main-irregular {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding: 40px;
}

.contact-info-block h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-visual-offset {
    flex: 1;
    margin-top: 60px;
    background-color: #d1e7f0;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.map-section-diagonal {
    padding: 80px 60px 120px;
    background-color: #f8f9fa;
}

.map-section-diagonal h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #e8f4f8;
    border: 2px dashed #1e3a8a;
    text-align: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.map-note {
    font-size: 16px;
    color: #546e7a;
}

.thanks-section-centered {
    margin-top: 140px;
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    padding: 16px;
    background-color: #e8f4f8;
    border-radius: 6px;
    margin: 24px 0;
}

.thanks-next-steps {
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

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

.thanks-next-steps ul li {
    font-size: 17px;
    color: #2c3e50;
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 24px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.thanks-image {
    flex: 1;
    background-color: #d1e7f0;
}

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

.legal-content {
    margin-top: 140px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 60px 120px;
}

.legal-content h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.legal-intro {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-date {
    font-style: italic;
    color: #888888;
    margin-top: 60px;
}

.no-link {
    color: #546e7a;
}

@media (max-width: 1200px) {
    .service-card {
        width: calc(50% - 20px);
    }

    .value-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
        margin: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 100px;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-text-overlap {
        margin-left: 0;
        margin-top: -60px;
    }

    .hero-text-overlap h1 {
        font-size: 36px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-text-block {
        padding-left: 0;
    }

    .intro-visual-small {
        width: 100%;
        margin-top: 20px;
    }

    .service-card {
        width: 100%;
    }

    .form-section-diagonal {
        flex-direction: column;
        padding: 60px 20px;
    }

    .form-image-overlap {
        width: 100%;
        margin-top: 20px;
    }

    .process-steps-offset {
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin-top: 0 !important;
    }

    .footer-main {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .about-story-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .story-content {
        padding-right: 0;
    }

    .story-highlight {
        margin-top: 20px;
    }

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

    .team-section-irregular {
        flex-direction: column;
        padding: 60px 20px;
    }

    .service-detail {
        flex-direction: column !important;
        margin-bottom: 60px;
        gap: 40px;
    }

    .contact-main-irregular {
        flex-direction: column;
        padding: 60px 20px;
    }

    .contact-visual-offset {
        margin-top: 20px;
    }

    .thanks-section-centered {
        flex-direction: column;
        padding: 60px 20px;
    }

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

    .legal-content {
        padding: 60px 20px;
    }
}
