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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-color: #333;
    --light-gray: #F8F9FA;
    --medium-gray: #DDE2E5;
    --dark-gray: #495057;
    --white: #FFFFFF;
    --success: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--light-gray);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 600px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #C0392B;
}

.cta-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
    cursor: pointer;
}

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

.trust-block {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.trust-content-left {
    flex: 1;
    padding: 4rem;
}

.trust-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.trust-image-right {
    flex: 1;
}

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

.story-flow {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 4rem;
}

.story-text {
    max-width: 900px;
    margin: 0 auto;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-inline {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2980B9;
}

.services-split {
    display: flex;
    padding: 6rem 0;
    background: var(--light-gray);
}

.services-intro-left {
    flex: 0 0 35%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro-left p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.services-grid-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2980B9;
}

.testimonial-split {
    display: flex;
    padding: 6rem 0;
}

.testimonial-image-left {
    flex: 1;
}

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

.testimonial-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-gray);
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section-split {
    display: flex;
    padding: 6rem 0;
    background: var(--light-gray);
}

.form-intro-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.form-container-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #C0392B;
}

.final-cta-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.final-image-left {
    flex: 1;
}

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

.final-content-right {
    flex: 1;
    padding: 4rem;
}

.final-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-content-right p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
    transition: color 0.3s;
}

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

.footer-col p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    padding: 1.5rem;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: #45A049;
}

.btn-cookie-reject {
    background: var(--medium-gray);
    color: var(--text-color);
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--light-gray);
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.content-split {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
}

.content-split.reverse {
    flex-direction: row-reverse;
    background: var(--light-gray);
}

.content-left {
    flex: 1;
    padding-right: 4rem;
}

.content-right {
    flex: 1;
    padding-left: 4rem;
}

.content-split.reverse .content-left {
    padding-right: 0;
    padding-left: 4rem;
}

.content-split.reverse .content-right {
    padding-left: 0;
    padding-right: 4rem;
}

.content-left h2,
.content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-left p,
.content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.content-right img,
.content-left img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 6rem 4rem;
    background: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--dark-gray);
}

.team-split {
    display: flex;
    padding: 6rem 0;
    align-items: center;
}

.team-content-left {
    flex: 1;
    padding: 4rem;
}

.team-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.team-image-right {
    flex: 1;
}

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

.numbers-section {
    padding: 6rem 4rem;
    background: var(--primary-color);
    color: var(--white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.number-item {
    flex: 1;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.1rem;
}

.cta-about {
    text-align: center;
    padding: 6rem 4rem;
    background: var(--light-gray);
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    background: var(--white);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

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

.services-note {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.services-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-note p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.services-note ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.services-note ul li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.services-cta {
    text-align: center;
    padding: 6rem 4rem;
    background: var(--primary-color);
    color: var(--white);
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    padding: 6rem 0;
}

.contact-info-left {
    flex: 1;
    padding: 4rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--dark-gray);
}

.contact-detail {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-map-right {
    flex: 1;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.contact-cta-section {
    text-align: center;
    padding: 5rem 4rem;
    background: var(--light-gray);
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.contact-faq {
    padding: 5rem 4rem;
    background: var(--white);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

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

.faq-item p {
    color: var(--dark-gray);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--success);
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-next-steps {
    padding: 6rem 4rem;
    background: var(--white);
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

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

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

.step-item p {
    color: var(--dark-gray);
}

.thanks-testimonial {
    padding: 5rem 4rem;
    background: var(--light-gray);
    text-align: center;
}

.thanks-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

.legal-container a:hover {
    color: #2980B9;
}

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

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

.gdpr-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td {
    color: var(--text-color);
}

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

@media (max-width: 1024px) {
    .hero-split,
    .trust-block,
    .services-split,
    .testimonial-split,
    .form-section-split,
    .final-cta-split,
    .page-hero-split,
    .content-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .content-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .trust-content-left,
    .services-intro-left,
    .form-intro-left,
    .final-content-right,
    .page-hero-content,
    .content-left,
    .content-right,
    .team-content-left,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .content-split .content-left,
    .content-split .content-right,
    .content-split.reverse .content-left,
    .content-split.reverse .content-right {
        padding: 2rem;
    }

    .hero-image,
    .trust-image-right,
    .testimonial-image-left,
    .final-image-left,
    .page-hero-image,
    .team-image-right,
    .contact-map-right,
    .service-detail-image {
        min-height: 400px;
    }

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

    .values-grid,
    .numbers-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .trust-content-left h2,
    .services-intro-left h2,
    .form-intro-left h2,
    .final-content-right h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .values-section h2,
    .numbers-section h2,
    .cta-about h2,
    .services-cta h2,
    .contact-cta-section h2,
    .thanks-next-steps h2 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content,
    .trust-content-left,
    .services-intro-left,
    .form-intro-left,
    .final-content-right {
        padding: 2rem 1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}