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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

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

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

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

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.header-cta {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
}

.header-cta:hover {
    background: #2980b9;
}

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

.hero-left {
    flex: 1;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-label {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 10px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 36px;
    color: var(--secondary-color);
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

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

.problem-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.problem-left p {
    font-size: 18px;
    color: var(--text-light);
}

.problem-right {
    flex: 1;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.insight-section {
    padding: 80px 5%;
}

.insight-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-content img {
    width: 45%;
    border-radius: 8px;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-icon {
    font-size: 48px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-select {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.service-select:hover {
    background: #1a252f;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.trust-section {
    padding: 80px 5%;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-text > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.trust-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-benefits li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.trust-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.trust-image {
    width: 45%;
}

.trust-image img {
    border-radius: 8px;
}

.testimonials-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.form-section {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 8px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

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

.final-cta {
    padding: 100px 5%;
    text-align: center;
    background: var(--bg-light);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: #c0392b;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 20px;
}

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

.sticky-btn {
    display: block;
    padding: 14px 28px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.page-hero {
    background: var(--primary-color);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.story-section {
    padding: 80px 5%;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.story-image {
    width: 45%;
}

.story-image img {
    border-radius: 8px;
}

.timeline-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
}

.team-section {
    padding: 80px 5%;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    text-align: center;
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.values-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-intro {
    text-align: center;
    margin-bottom: 50px;
}

.values-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 5%;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.services-intro {
    padding: 80px 5%;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.intro-image {
    width: 45%;
}

.intro-image img {
    border-radius: 8px;
}

.detailed-services {
    padding: 0 5% 80px;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.service-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-includes li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

.service-detail-image {
    width: 40%;
}

.service-detail-image img {
    border-radius: 8px;
}

.process-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

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

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

.contact-section {
    padding: 80px 5%;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.contact-map h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-map p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-image {
    width: 45%;
}

.contact-image img {
    border-radius: 8px;
    margin-bottom: 16px;
}

.image-caption p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.thanks-section {
    padding: 100px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
}

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.thanks-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.thanks-step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.thanks-step p {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.thanks-contact a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-section {
    padding: 80px 5%;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.legal-container h4 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
}

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

.legal-container ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
}

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

.cookie-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cookie-table td {
    font-size: 14px;
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 15px;
    }

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

    .hero-left {
        padding: 40px 5%;
    }

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

    .hero-right {
        width: 100%;
        height: 400px;
    }

    .content-wrap,
    .insight-content,
    .trust-container,
    .story-grid,
    .intro-split,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

    .insight-content img,
    .trust-image,
    .story-image,
    .intro-image,
    .service-detail-image,
    .contact-image {
        width: 100%;
    }

    .service-card,
    .testimonial-card,
    .value-card,
    .process-step,
    .team-member {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 16px;
    }

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .thanks-steps {
        flex-direction: column;
        align-items: center;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .service-card,
    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-member {
        flex: 1 1 calc(33.333% - 20px);
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }
}