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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2e7ab8;
    --accent-color: #f47920;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero-left,
.hero-right {
    flex: 1;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #2e7ab8 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary {
    background: var(--accent-color);
    color: white;
}

.cta-primary:hover {
    background: #d66715;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-large {
    background: var(--primary-color);
    color: white;
    padding: 20px 48px;
    font-size: 1.1rem;
}

.cta-large:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.problem-section,
.approach-section,
.insight-section,
.testimonials-inline,
.services-overview,
.contact-form-section,
.trust-section,
.final-cta,
.about-story,
.values-section,
.team-section,
.certifications-section,
.cta-section,
.services-detailed,
.pricing-note,
.contact-info-section,
.contact-reasons,
.faq-section,
.thanks-hero,
.thanks-details,
.thanks-contact {
    padding: 80px 0;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-half p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.challenge-list {
    list-style: none;
    margin: 24px 0;
}

.challenge-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
}

.challenge-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.emphasis {
    background: var(--background-light);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.insight-section {
    background: var(--background-light);
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.stat-cards {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 40px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.method-steps {
    margin: 32px 0;
}

.method-step {
    padding: 20px;
    margin-bottom: 16px;
    background: var(--background-light);
    border-radius: 6px;
}

.method-step strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.testimonials-inline {
    background: var(--primary-color);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.testimonial-author span {
    opacity: 0.85;
    font-size: 0.95rem;
}

.services-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.service-card > p {
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-details ul {
    list-style: none;
    margin: 24px 0;
}

.service-details li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0 16px;
}

.discount {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.btn-select-service,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select-service:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-light);
    padding: 48px;
    border-radius: 8px;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.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 16px;
    border: 1px 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);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.trust-section {
    background: var(--background-light);
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

.trust-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #b0b0b0;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d66715;
    color: white;
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 24px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.values-grid,
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card,
.team-member {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3,
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p,
.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.cert-list {
    max-width: 700px;
    margin: 48px auto 0;
}

.cert-item {
    padding: 20px;
    background: white;
    margin-bottom: 16px;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.cert-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.service-detail-card {
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.service-detail-content {
    display: flex;
    gap: 48px;
}

.service-detail-left {
    flex: 1;
    padding: 48px;
}

.service-detail-right {
    flex: 1;
    min-height: 400px;
}

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

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 24px;
}

.service-detail-left h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-light);
}

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

.service-duration {
    background: var(--background-light);
    padding: 12px 16px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.service-detail-card.featured {
    border: 3px solid var(--accent-color);
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: 12px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 8px;
}

.pricing-note {
    background: var(--background-light);
    text-align: center;
}

.pricing-note h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.pricing-note p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.pricing-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 16px 24px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
    font-weight: 500;
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info-card {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.contact-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-value {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-value a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    margin-top: 32px;
    padding: 24px;
    background: var(--background-light);
    border-radius: 6px;
}

.contact-note p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.9);
    color: white;
    padding: 24px;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.reason-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 32px;
    font-weight: bold;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-card {
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.thanks-card h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.timeline {
    margin-top: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.thanks-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.thanks-service-info p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-actions {
    text-align: center;
}

.thanks-actions h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.action-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-link {
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-contact {
    background: var(--background-light);
}

.thanks-contact h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thanks-contact p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.email-large {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 32px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--text-dark);
}

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

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

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

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
        gap: 16px;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .content-half h2 {
        font-size: 2rem;
    }

    .stat-cards {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .values-grid,
    .team-grid,
    .reasons-grid {
        flex-direction: column;
    }

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

    .service-detail-left {
        padding: 32px 24px;
    }

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

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

    .sticky-cta {
        bottom: 12px;
        right: 12px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero-left {
        padding: 60px 32px;
    }

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

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

    .contact-form {
        padding: 32px 24px;
    }

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

    .timeline-item {
        gap: 16px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}