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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border-radius: 6px;
    font-weight: 600;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.trust-visual {
    flex: 1;
    padding: 0 2rem;
}

.trust-visual img {
    width: 100%;
    border-radius: 12px;
}

.trust-content {
    flex: 1;
    padding: 0 5%;
}

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

.trust-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.link-simple {
    font-weight: 600;
    color: var(--primary-color);
}

.services-preview {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-split h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-info {
    padding: 1.75rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.price {
    display: inline-block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
}

.why-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.why-content {
    flex: 1;
    padding: 0 5%;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.why-item strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.why-visual {
    flex: 1;
    padding: 0 2rem;
}

.why-visual img {
    width: 100%;
    border-radius: 12px;
}

.testimonial-full {
    padding: 5rem 10%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-full blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-full p {
    font-size: 1.625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-full cite {
    font-size: 1.125rem;
    font-style: normal;
    opacity: 0.9;
}

.process-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.process-visual {
    flex: 1;
    padding: 0 2rem;
}

.process-visual img {
    width: 100%;
    border-radius: 12px;
}

.process-content {
    flex: 1;
    padding: 0 5%;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-steps strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.process-steps span {
    display: block;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.cta-emphasis {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-wrapper h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.cta-wrapper p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.form-split {
    display: flex;
    padding: 5rem 5%;
    background-color: var(--bg-light);
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.form-container {
    flex: 1;
}

.main-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin-bottom: 1.75rem;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.final-assurance {
    padding: 4rem 5%;
}

.assurance-split {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.assurance-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.assurance-item p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.footer-split {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

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

.btn-cookie.accept:hover {
    background-color: #059669;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.page-hero-content {
    flex: 1;
    padding: 0 5%;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

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

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-visual {
    flex: 1;
    padding: 0 2rem;
}

.story-visual img {
    width: 100%;
    border-radius: 12px;
}

.story-content {
    flex: 1;
    padding: 0 5%;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.values-split {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.values-content {
    flex: 1;
    padding: 0 5%;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.value-block {
    margin-bottom: 2.5rem;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-block p {
    font-size: 1.0625rem;
    color: var(--text-light);
}

.values-visual {
    flex: 1;
    padding: 0 2rem;
}

.values-visual img {
    width: 100%;
    border-radius: 12px;
}

.team-cards {
    padding: 5rem 5%;
}

.team-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-split {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    gap: 3rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 12px;
}

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

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.service-detail-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.guarantee-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.guarantee-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.guarantee-item p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    padding: 0 5%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    padding: 0 2rem;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-detail {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-detail p {
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
    counter-reset: thanks-counter;
}

.thanks-steps li {
    counter-increment: thanks-counter;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.thanks-steps li::before {
    content: counter(thanks-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-timing {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-timing p {
    margin: 0;
    font-weight: 600;
}

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

.thanks-assurance {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.assurance-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.assurance-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.assurance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.assurance-card p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .footer-main {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        align-items: flex-start;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-right.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-split,
    .trust-split,
    .why-split,
    .process-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .trust-visual,
    .why-visual,
    .process-visual,
    .story-visual,
    .values-visual,
    .page-hero-visual,
    .contact-visual {
        padding: 2rem 0;
    }

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

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

    .testimonial-full p {
        font-size: 1.25rem;
    }

    .assurance-split,
    .guarantee-grid,
    .team-grid,
    .faq-grid,
    .assurance-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .form-split {
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content,
    .trust-content,
    .why-content,
    .process-content,
    .page-hero-content,
    .story-content,
    .values-content,
    .contact-info {
        padding: 0 1rem;
    }

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

    .cta-wrapper h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .main-form {
        padding: 1.5rem;
    }
}