* {
    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: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a2332;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.intro-asymmetric {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.insight-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    border-radius: 8px;
}

.insight-text {
    flex: 1.2;
}

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.insight-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.story-block {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
    text-align: center;
}

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

.story-left {
    flex: 1;
}

.story-left p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.story-right {
    flex: 1;
}

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

.trust-indicators {
    padding: 5rem 2rem;
    background: #1a2332;
    color: #ffffff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.trust-card {
    text-align: center;
    flex: 1;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 1.1rem;
    color: #cbd5e0;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

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

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-info {
    flex: 1;
    padding: 3rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonials-modern {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonials-modern h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.testimonial-item {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.urgency-block {
    padding: 4rem 2rem;
    background: #3498db;
    color: #ffffff;
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
}

.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-left p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
    font-size: 1.05rem;
}

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

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e6ed;
    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: #3498db;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 2rem;
    background: #1a2332;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e0;
}

.footer {
    background: #f8f9fa;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

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

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

.footer-column ul li a {
    color: #5a6c7d;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.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-content a {
    color: #3498db;
}

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

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

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.3rem;
    color: #cbd5e0;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.team-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.team-image {
    flex: 1;
}

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

.approach-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.mission-block {
    padding: 6rem 2rem;
    background: #ffffff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.mission-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 2rem;
    background: #3498db;
}

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

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

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

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

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-detail-right {
    flex: 1;
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-includes ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.7rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin: 0;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-guarantee {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.guarantee-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.cta-services {
    padding: 5rem 2rem;
    background: #1a2332;
}

.contact-split {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.contact-info p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a2332;
}

.contact-detail p {
    color: #5a6c7d;
    margin-bottom: 0.3rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-note {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-note p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.faq-item {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.coverage-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.coverage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.coverage-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.coverage-cities ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.coverage-cities li {
    background: #f8f9fa;
    padding: 1rem 2rem;
    border-radius: 6px;
    color: #2c3e50;
    font-weight: 500;
}

.cta-contact {
    padding: 5rem 2rem;
    background: #3498db;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #3498db;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-info {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.thanks-info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.thanks-steps {
    display: flex;
    gap: 3rem;
}

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

.thanks-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 3rem 2rem;
    background: #f8f9fa;
    display: none;
}

.service-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-info-content h3 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.service-info-content span {
    color: #3498db;
}

.service-info-content p {
    color: #5a6c7d;
    font-size: 1.1rem;
}

.thanks-explore {
    padding: 5rem 2rem;
    background: #ffffff;
}

.explore-content h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.explore-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.explore-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.explore-card p {
    color: #5a6c7d;
}

.thanks-reassurance {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.reassurance-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.reassurance-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.legal-page {
    padding: 4rem 2rem;
}

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

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

.legal-date {
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .intro-content,
    .insight-container,
    .story-split,
    .form-container,
    .about-container,
    .team-split,
    .contact-container,
    .service-detail-card {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .trust-grid,
    .testimonial-grid,
    .approach-steps,
    .thanks-steps,
    .explore-links {
        flex-direction: column;
    }

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

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

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .services-header h2,
    .testimonials-modern h2,
    .approach-section h2 {
        font-size: 2rem;
    }

    .faq-item {
        min-width: 100%;
    }

    .coverage-cities ul {
        flex-direction: column;
    }
}