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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #60a5fa;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

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

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

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

/* Navigation */
.main-nav {
    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: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    background: #ffffff;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f1f5f9;
    color: #2563eb;
}

/* Hero Block (STACKED SECTION) */
.hero-block {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 1.5rem;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f59e0b;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231e293b" width="1200" height="800"/><path fill="%23334155" opacity="0.3" d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z"/></svg>') center/cover;
    opacity: 0.4;
    z-index: 1;
}

/* Container Variations (STACKED SECTIONS) */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Section Blocks (STACKED SECTIONS FLOW) */
section {
    padding: 5rem 0;
}

.intro-block {
    background: #f8fafc;
    padding: 6rem 0;
}

.intro-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Services Highlight (STACKED SECTION) */
.services-highlight {
    background: #ffffff;
    padding: 7rem 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.label-alt {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.select-service {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Trust Block (STACKED SECTION - Split Layout) */
.trust-block {
    background: #0f172a;
    padding: 0;
}

.split-content {
    padding: 4rem 1.5rem;
    color: #ffffff;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-quote {
    border-left: 4px solid #f59e0b;
    padding-left: 2rem;
    margin: 3rem 0;
}

.inline-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.inline-quote cite {
    font-size: 1rem;
    color: #94a3b8;
    font-style: normal;
}

.split-image {
    min-height: 400px;
    background: #1e293b;
}

.trust-image {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

/* Process Block (STACKED SECTION) */
.process-block {
    background: #f1f5f9;
    padding: 6rem 0;
}

.process-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.step-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Testimonials Block (STACKED SECTION) */
.testimonials-block {
    background: #ffffff;
    padding: 6rem 0;
}

.testimonials-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: #1e293b;
}

/* CTA Sections (STACKED SECTIONS) */
.cta-mid {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-mid h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-mid p {
    font-size: 1.15rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #f59e0b;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2563eb;
    border: 3px solid #2563eb;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Why Us Block (STACKED SECTION) */
.why-us-block {
    background: #0f172a;
    padding: 6rem 0;
}

.why-us-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
}

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

.benefit-item {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Form Section (STACKED SECTION) */
.form-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Final CTA (STACKED SECTION) */
.final-cta {
    background: #ffffff;
    padding: 5rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.final-cta p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.center {
    text-align: center;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-col a {
    color: #60a5fa;
}

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

.footer-bottom p {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #f59e0b;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

/* Page Hero (for subpages) */
.page-hero {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #cbd5e1;
}

/* Content Block (for subpages) */
.content-block {
    padding: 5rem 0;
}

.content-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.alt-bg {
    background: #f8fafc;
}

/* Image Break */
.image-break {
    height: 400px;
    background: #e2e8f0;
}

.full-image-section {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.about-image-1 {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Team Block */
.team-block {
    padding: 6rem 0;
    background: #ffffff;
}

.team-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.team-member {
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #e2e8f0;
}

.placeholder-photo {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.role {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Values Block */
.values-block {
    padding: 6rem 0;
    background: #f8fafc;
}

.values-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-item p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

/* Stats Block */
.stats-block {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    color: #dbeafe;
}

/* Certifications Block */
.certifications-block {
    padding: 5rem 0;
    background: #ffffff;
}

.certifications-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.certifications-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
}

.cert-list {
    list-style: none;
    padding-left: 0;
}

.cert-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Services Detail Pages */
.services-detail {
    padding: 5rem 0;
    background: #ffffff;
}

.service-detail-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.service-detail-header {
    background: #2563eb;
    color: #ffffff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.service-detail-content {
    padding: 3rem 2.5rem;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f59e0b;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

/* Guarantee Block */
.guarantee-block {
    padding: 5rem 0;
    background: #f1f5f9;
    text-align: center;
}

.guarantee-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.guarantee-block p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

/* Contact Pages */
.contact-info-block {
    padding: 5rem 0;
    background: #ffffff;
}

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

.contact-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
}

/* Visit Us Block */
.visit-us-block {
    padding: 5rem 0;
    background: #f8fafc;
}

.visit-us-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.visit-us-block p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    height: 500px;
    background: #e2e8f0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.map-placeholder p {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 600;
}

/* Questions Block */
.questions-block {
    padding: 6rem 0;
    background: #ffffff;
}

.questions-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.faq-item {
    margin-bottom: 3rem;
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5rem 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: #ffffff;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-hero .lead {
    color: #d1fae5;
}

.thanks-content {
    padding: 6rem 0;
    background: #ffffff;
}

.thanks-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.next-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.next-step .step-number {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
}

.thanks-service-info {
    display: none;
    margin: 3rem 0;
}

.selected-service-box {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.selected-service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.selected-service-box p {
    font-size: 1.25rem;
    color: #10b981;
    font-weight: 600;
}

.thanks-note {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.thanks-note p {
    font-size: 1.05rem;
    color: #78350f;
    line-height: 1.7;
    margin: 0;
}

.thanks-resources {
    padding: 5rem 0;
    background: #f8fafc;
}

.thanks-resources h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.resource-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.legal-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

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

.cookie-table th {
    background: #f1f5f9;
    font-weight: 700;
    color: #1e293b;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        height: auto;
        max-width: none;
        box-shadow: none;
        transform: none;
        padding: 0;
        display: flex;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
        color: #2563eb;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

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

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

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

    .split-content,
    .split-image {
        flex: 1;
    }

    .testimonials-flex {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

    .team-member {
        flex: 0 0 calc(33.333% - 2rem);
    }

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

    .stat-item {
        flex: 0 0 calc(25% - 2.25rem);
    }

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

    .contact-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }

    .resource-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .resource-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }
}

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

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

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
    }
}