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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #95d5b2;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #d32f2f;
    --success-color: #2d6a4f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.intro-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.content-left p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.visual-right {
    flex: 1;
    background: var(--border-color);
}

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

.services-preview {
    background: var(--bg-light);
    padding: 80px 40px;
}

.section-header-center {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 19px;
    color: var(--text-medium);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

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

.service-visual {
    flex: 1;
    background: var(--border-color);
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.select-service {
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: var(--primary-dark);
}

.cta-section {
    background: var(--primary-color);
    padding: 80px 40px;
}

.cta-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-action {
    flex: 0 0 auto;
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.form-wrapper {
    flex: 1;
}

.main-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    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: 16px;
    font-family: inherit;
    background: var(--bg-white);
}

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

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

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    z-index: 1000;
    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: 30px;
}

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-hero {
    padding: 60px 40px;
    background: var(--bg-light);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 19px;
    color: var(--text-medium);
}

.hero-image {
    flex: 1;
    background: var(--border-color);
}

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

.about-intro {
    padding: 80px 40px;
}

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

.content-wrapper-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.content-wrapper-narrow p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.split-content-reversed {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.visual-side {
    flex: 1;
    background: var(--border-color);
}

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

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.text-side p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.content-centered h2 {
    font-size: 38px;
    color: var(--text-dark);
}

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

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 6px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    background: var(--border-color);
}

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

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

.process-steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-medium);
}

.cta-about {
    padding: 80px 40px;
}

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

.cta-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-centered p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.services-header {
    padding: 60px 40px;
    background: var(--bg-light);
}

.header-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.header-content-centered h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.header-content-centered p {
    font-size: 19px;
    color: var(--text-medium);
}

.services-detailed {
    padding: 80px 40px;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.service-layout-left,
.service-layout-right {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-container {
    flex: 1;
    background: var(--border-color);
    min-height: 500px;
}

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

.service-description {
    flex: 1;
    padding: 50px;
}

.service-description h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-description h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-description li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.services-cta {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.cta-box-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-box-centered p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.contact-header {
    padding: 60px 40px;
    background: var(--bg-light);
}

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

.header-simple h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.header-simple p {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-main {
    padding: 80px 40px;
}

.contact-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

.contact-block p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-block .note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.contact-image-side {
    flex: 1;
    background: var(--border-color);
}

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

.contact-secondary {
    padding: 60px 40px;
    background: var(--bg-light);
}

.content-box-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-box-narrow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-box-narrow p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 18px;
}

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

.faq-section {
    padding: 80px 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 40px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.thanks-content {
    flex: 2;
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
    padding: 15px;
    background: var(--bg-light);
    border-radius: 4px;
    display: none;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-item p {
    font-size: 16px;
    color: var(--text-medium);
    padding-top: 8px;
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    padding: 14px 32px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-sidebar {
    flex: 1;
}

.info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.info-box ul {
    margin-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page {
    padding: 60px 40px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-container strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

.cookies-table td {
    font-size: 15px;
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout,
    .split-content-reversed,
    .split-layout-even,
    .service-card,
    .service-layout-left,
    .service-layout-right,
    .hero-split-simple,
    .contact-split-layout,
    .form-container-split {
        flex-direction: column;
    }

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-visual,
    .service-visual,
    .visual-right,
    .visual-side,
    .hero-image,
    .image-block,
    .service-image-container,
    .contact-image-side {
        min-height: 300px;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .intro-section,
    .services-preview,
    .cta-section,
    .form-section,
    .about-intro,
    .philosophy-section,
    .values-section,
    .experience-section,
    .methodology-section,
    .cta-about,
    .services-detailed,
    .services-cta,
    .contact-main,
    .contact-secondary,
    .faq-section,
    .thanks-section,
    .legal-page {
        padding: 50px 20px;
    }

    .section-header-center h2,
    .content-centered h2,
    .content-wrapper-narrow h2,
    .text-side h2,
    .content-block h2,
    .service-description h2,
    .contact-info-side h2,
    .cta-box-centered h2,
    .cta-centered h2,
    .cta-text h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .value-block {
        flex: 1 1 100%;
    }

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

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