/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #088bbe;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #05668d;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.centered {
    text-align: center;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #088bbe;
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 2rem;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #088bbe;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a4d68 0%, #088bbe 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
}

/* Trust Bar */
.trust-bar {
    background-color: #f8f9fa;
    padding: 2.5rem 0;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    color: #088bbe;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 0.95rem;
    color: #666;
}

/* Problem Section */
.problem-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-left h2,
.content-right h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-left p,
.content-right p {
    margin-bottom: 1rem;
    color: #333;
}

.highlight-box {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #088bbe;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0a4d68;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #088bbe;
    font-weight: bold;
}

/* Solution Intro */
.solution-intro {
    background-color: #0a4d68;
    color: #ffffff;
    padding: 4rem 0;
}

.solution-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.solution-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Services Overview */
.services-overview {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.services-overview h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    color: #088bbe;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #088bbe;
}

/* Why Us Section */
.why-us-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.why-us-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.reasons-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-block {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #088bbe;
}

.reason-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a4d68;
}

.reason-block p {
    color: #333;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #e8f4f8;
    padding: 4rem 0;
}

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

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #088bbe;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.process-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #088bbe;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0a4d68;
}

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

/* Coverage Section */
.coverage-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.split-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coverage-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.coverage-text p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.7;
}

.coverage-map img {
    width: 100%;
    border-radius: 8px;
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-section p {
    color: #666;
    margin-bottom: 2rem;
}

.service-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    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: #088bbe;
}

.btn-submit {
    background-color: #088bbe;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #05668d;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #088bbe 0%, #0a4d68 100%);
    color: #ffffff;
    padding: 4rem 0;
}

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

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #ffffff;
    color: #088bbe;
}

.cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #088bbe;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #088bbe;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #05668d;
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a4d68 0%, #088bbe 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-intro {
    padding: 4rem 0;
    background-color: #ffffff;
}

.stats-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #088bbe;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

.mission-section {
    background-color: #e8f4f8;
    padding: 4rem 0;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.values-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #088bbe;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0a4d68;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.7;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    color: #088bbe;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    font-size: 1rem;
    color: #088bbe;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

.certifications-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.cert-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.cert-list li {
    padding: 1rem;
    border-left: 3px solid #088bbe;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
}

.cta-section {
    background-color: #e8f4f8;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Services Page Styles */
.services-detailed {
    padding: 4rem 0;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #0a4d68;
}

.service-detail-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #088bbe;
    font-weight: bold;
}

.pricing-info {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #088bbe;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.service-detail-visual {
    width: 100%;
}

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

.service-packages {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.package-card.featured {
    border: 3px solid #088bbe;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #088bbe;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #088bbe;
    margin-bottom: 1.5rem;
}

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

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #088bbe;
    font-weight: bold;
}

.package-cta {
    display: block;
    text-align: center;
    background-color: #088bbe;
    color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.package-cta:hover {
    background-color: #05668d;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-main h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 30px;
    height: 30px;
    color: #088bbe;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

.highlight-text {
    color: #088bbe;
    font-weight: 600;
    margin-top: 0.5rem;
}

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

.location-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.location-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #088bbe;
}

.location-item p {
    color: #555;
    line-height: 1.6;
}

.coverage-map-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.coverage-map-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.map-container {
    margin-top: 2rem;
}

.map-container img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.response-time-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.response-time-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.response-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.response-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.response-icon {
    width: 60px;
    height: 60px;
    color: #088bbe;
    margin: 0 auto 1rem;
}

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

.response-time {
    font-size: 2rem;
    font-weight: 700;
    color: #088bbe;
    margin-bottom: 0.5rem;
}

.response-box p {
    color: #666;
}

.emergency-section {
    background-color: #e8f4f8;
    padding: 4rem 0;
}

.emergency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.emergency-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.emergency-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.emergency-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: #088bbe;
    display: block;
    margin-bottom: 1rem;
}

.emergency-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.faq-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #088bbe;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-hero {
    background-color: #ffffff;
    padding: 4rem 0;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    color: #088bbe;
}

.next-steps-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.next-steps-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.step-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.step-time {
    font-size: 0.9rem;
    color: #088bbe;
    font-weight: 600;
}

.thanks-info {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #088bbe;
}

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

.contact-link {
    font-weight: 700;
    color: #088bbe;
    font-size: 1.1rem;
}

.thanks-resources {
    background-color: #e8f4f8;
    padding: 4rem 0;
}

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

.thanks-resources > p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #088bbe;
}

.resource-card p {
    color: #555;
}

/* Legal Pages Styles */
.legal-content {
    background-color: #ffffff;
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #0a4d68;
}

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

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

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

.legal-content a {
    color: #088bbe;
    text-decoration: underline;
}

.update-date {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.9rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-section {
        padding: 6rem 0;
    }

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

    .hero-visual {
        margin-top: 3rem;
    }

    .trust-items {
        flex-direction: row;
        justify-content: space-around;
    }

    .split-content {
        flex-direction: row;
        gap: 3rem;
    }

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 calc(50% - 1rem);
    }

    .split-visual {
        flex-direction: row;
        align-items: center;
    }

    .coverage-text,
    .coverage-map {
        flex: 1;
    }

    .stats-box {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-detail-block {
        flex-direction: row;
        gap: 3rem;
    }

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

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

    .packages-grid {
        flex-direction: row;
    }

    .package-card {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-main {
        flex: 2;
    }

    .contact-secondary {
        flex: 1;
    }

    .coverage-stats {
        flex-direction: row;
    }

    .response-boxes {
        flex-direction: row;
    }

    .info-boxes {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .btn-submit {
        width: auto;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .step {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .team-member {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
