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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

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

/* Header and Navigation */
.header-main {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.brand-logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-left: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-content-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

/* Intro Cards Section */
.intro-cards {
    padding: 80px 0;
    background: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: #ecf0f1;
}

.section-title-centered {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.service-cards-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 1 1 calc(66.666% - 20px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-card.large .service-image {
    height: 280px;
}

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-info p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.split-content-cards {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.content-card-left {
    flex: 1;
}

.content-card-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-card-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-cards-inline {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: #3498db;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

.content-card-right {
    flex: 1;
}

.feature-list-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-check {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
}

.feature-item strong {
    color: #2c3e50;
    font-size: 17px;
    display: block;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #fff;
}

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

.process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

/* CTA Section Card */
.cta-section-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.cta-card-elevated {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-elevated h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-card-elevated p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Testimonials Section */
.testimonials-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

/* Page Hero Card */
.page-hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
}

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

.page-hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

/* Services Detailed Section */
.services-detailed {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-layout-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    gap: 0;
}

.service-detail-card.featured {
    border: 3px solid #3498db;
}

.service-detail-image {
    flex: 0 0 400px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-detail-content {
    padding: 50px;
    flex: 1;
    position: relative;
}

.service-badge {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 15px;
}

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

.service-pricing {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.price-detail {
    font-size: 14px;
    color: #888;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #fff;
}

.booking-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.booking-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.booking-intro p {
    font-size: 16px;
    color: #666;
}

.service-booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* FAQ Cards */
.faq-cards {
    padding: 80px 0;
    background: #ecf0f1;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-card h3 {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* About Page Sections */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

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

.about-hero-card h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.about-hero-card p {
    font-size: 20px;
    opacity: 0.95;
}

.story-section {
    padding: 80px 0;
    background: #fff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-card {
    flex: 0 0 500px;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    border-radius: 12px;
}

.story-content-card {
    flex: 1;
}

.story-content-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-content-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.team-intro {
    padding: 80px 0;
    background: #fff;
}

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

.team-content-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.team-content-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 180px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.approach-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.approach-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-content {
    padding: 30px;
}

.approach-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.approach-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.certifications-section {
    padding: 80px 0;
    background: #fff;
}

.certifications-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.certifications-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.certifications-card > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.certifications-list {
    list-style: none;
}

.certifications-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.certifications-list li:last-child {
    border-bottom: none;
}

.certifications-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60, #229954);
}

.cta-card-simple {
    text-align: center;
    color: #fff;
}

.cta-card-simple h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-card-simple p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #27ae60;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Page */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
}

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

.contact-hero-card h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.contact-hero-card p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-information {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 40px;
}

.contact-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.office-section {
    padding: 60px 0;
    background: #fff;
}

.office-card {
    display: flex;
    gap: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.office-image {
    flex: 0 0 550px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.office-info {
    padding: 50px;
    flex: 1;
}

.office-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.office-info > p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.transport-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.transport-info strong {
    color: #2c3e50;
}

.response-time {
    padding: 80px 0;
    background: #ecf0f1;
}

.response-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.response-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.response-card > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.response-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 0 0 240px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.step-arrow {
    font-size: 28px;
    color: #3498db;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60, #229954);
}

.thanks-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.thanks-card h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-card > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.next-steps-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.next-steps-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step-box {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #3498db;
}

.step-num {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-box p {
    font-size: 14px;
    color: #555;
}

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

.thanks-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #fff;
}

.thanks-resources {
    padding: 60px 0;
    background: #f8f9fa;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.resource-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.resource-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.resource-card a {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: #2980b9;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: #fff;
}

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

.legal-document h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-document h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-document ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-document ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-document a {
    color: #3498db;
    text-decoration: underline;
}

.legal-document a:hover {
    color: #2980b9;
}

/* Footer */
.footer-main {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 800px;
    margin: 10px auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-content-cards {
        flex-direction: column;
    }

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

    .story-image-card {
        flex: 1;
        width: 100%;
    }

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

    .service-detail-image {
        flex: 1;
        height: 300px;
    }

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

    .office-image {
        flex: 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .ad-disclosure {
        display: none;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
    }

    .hero-content-card {
        padding: 30px;
    }

    .hero-content-card h1 {
        font-size: 32px;
    }

    .card-grid,
    .service-cards-masonry,
    .process-cards,
    .testimonial-grid,
    .values-cards,
    .approach-cards,
    .faq-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .response-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}