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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.navigation {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: #0066cc;
}

.nav-right .ad-label {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

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

.split-container,
.split-container-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-left-narrow,
.split-right-narrow {
    flex: 0 0 40%;
    padding: 4rem 3rem;
}

.split-left-wide,
.split-right-wide {
    flex: 0 0 60%;
}

.split-left-wide img,
.split-right-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section,
.trust-section,
.services-preview,
.testimonials-section,
.process-section,
.contact-form-section,
.final-info {
    padding: 5rem 2rem;
}

.info-section {
    background: #fff;
}

.split-right-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-right-narrow p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.trust-section {
    background: #f8f9fa;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.services-preview {
    background: #fff;
}

.split-left-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-left-narrow p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #fff;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-mini {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card-mini h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-card-mini .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.8rem;
}

.service-card-mini p {
    color: #666;
}

.testimonials-section {
    background: #1a1a1a;
    color: #fff;
}

.testimonials-section h2 {
    color: #fff;
}

.testimonials-layout {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #ccc;
}

.process-section {
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem;
}

.form-left {
    background: #f8f9fa;
}

.form-left h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-left p {
    color: #555;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-info {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.final-info h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 1rem;
}

.final-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,102,204,0.4);
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    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-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.page-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-content-center p {
    font-size: 1.3rem;
    color: #555;
}

.about-intro {
    padding: 5rem 2rem;
    background: #fff;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #fff;
    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: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.experience-section {
    padding: 5rem 2rem;
    background: #fff;
}

.experience-list {
    list-style: none;
    margin-top: 2rem;
}

.experience-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.1rem;
}

.experience-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.5rem;
}

.expertise-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.expertise-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

.approach-section {
    padding: 5rem 2rem;
    background: #fff;
}

.approach-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.approach-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-step p {
    color: #666;
    font-size: 1rem;
}

.services-main {
    padding: 5rem 2rem;
    background: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-full {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
}

.service-card-full.featured {
    border: 2px solid #0066cc;
    background: #fff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #0066cc;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.service-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #0052a3;
}

.additional-services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.additional-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.additional-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.additional-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #666;
    line-height: 1.6;
}

.payment-info {
    padding: 5rem 2rem;
    background: #fff;
}

.payment-list {
    list-style: none;
    margin-top: 1.5rem;
}

.payment-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.payment-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.5rem;
}

.guarantee-box {
    padding: 2rem;
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    border-radius: 8px;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.guarantee-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.contact-main {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-ways {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.ways-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.way-card {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.way-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.way-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-section {
    padding: 5rem 2rem;
    background: #fff;
}

.location-info {
    max-width: 900px;
    margin: 2rem auto 0;
}

.location-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.transport-list {
    list-style: none;
    margin: 1rem 0 2rem 2rem;
}

.transport-list li {
    padding: 0.5rem 0;
    color: #555;
}

.faq-contact {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.legal-page {
    padding: 5rem 2rem;
    background: #fff;
}

.last-updated {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 5rem 2rem;
    background: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.thanks-note {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-note p {
    color: #555;
    margin-bottom: 0.8rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container,
    .split-container-reverse {
        flex-direction: column;
    }

    .split-left-narrow,
    .split-right-narrow,
    .split-left-wide,
    .split-right-wide {
        flex: 1 1 100%;
    }

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

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

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

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

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

    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .values-grid,
    .expertise-layout,
    .approach-steps,
    .additional-grid {
        flex-direction: column;
    }

    .benefit-card,
    .value-card,
    .expertise-item,
    .approach-step,
    .additional-item {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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