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

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #e6f2ff;
    --navy: #1a2332;
    --gray: #4a5568;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --black: #000000;
    --accent-gold: #d4af37;
    --success: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    align-self: flex-start;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--white);
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.trust-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-image {
    flex: 0 0 45%;
}

.trust-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    line-height: 1.3;
}

.trust-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.feature-box {
    flex: 1;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 6px;
}

.feature-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--gray);
}

.services-pricing {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

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

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--gray);
}

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

.service-card {
    flex: 0 0 calc(50% - 1.25rem);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--dark-blue);
}

.why-choose {
    padding: 6rem 2rem;
    background: var(--white);
}

.why-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.intro-text {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

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

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.reason-item p {
    color: var(--gray);
    line-height: 1.6;
}

.why-visual {
    flex: 0 0 45%;
    position: relative;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.stat-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(26, 35, 50, 0.92);
    padding: 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-form-section {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    line-height: 1.3;
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.form-benefit svg {
    color: var(--success);
}

.form-container {
    flex: 1;
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--navy);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--dark-blue);
}

.selected-service-display {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 6px;
    text-align: center;
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    text-align: center;
    color: var(--white);
}

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

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

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,102,204,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,102,204,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-cookie:hover {
    background: var(--dark-blue);
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    text-align: center;
    color: var(--white);
}

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

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.story-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 0 0 40%;
}

.story-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.story-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.value-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-icon {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.team-intro p {
    font-size: 1.125rem;
    color: var(--gray);
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-stat p {
    color: var(--gray);
    font-size: 1.05rem;
}

.team-expertise {
    max-width: 900px;
    margin: 0 auto;
}

.team-expertise h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    text-align: center;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.expertise-list li {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 6px;
    color: var(--navy);
}

.facility-section {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

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

.facility-content {
    flex: 1;
}

.facility-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.facility-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.facility-features {
    list-style: none;
}

.facility-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--gray);
}

.facility-features li:last-child {
    border-bottom: none;
}

.facility-image {
    flex: 0 0 45%;
}

.facility-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.certifications-section {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.cert-intro {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.cert-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cert-item {
    flex: 0 0 calc(50% - 0.75rem);
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 6px;
    font-weight: 600;
    color: var(--navy);
}

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-layout {
    display: flex;
}

.service-detail-image {
    flex: 0 0 45%;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-description {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-price-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-blue);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service-cta:hover {
    background: var(--dark-blue);
}

.additional-services {
    padding: 5rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.additional-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.additional-item {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.additional-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.additional-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.add-price {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
}

.service-process {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.service-process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.process-step {
    flex: 1;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.services-cta {
    padding: 5rem 2rem;
    background: var(--navy);
    text-align: center;
    color: var(--white);
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--white);
}

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

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.address-box,
.email-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.address-box svg,
.email-box svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.email-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.email-box a:hover {
    text-decoration: underline;
}

.hours-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 1rem;
}

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

.directions-list li {
    padding: 0.75rem 0;
    color: var(--gray);
    line-height: 1.6;
}

.contact-map {
    flex: 0 0 40%;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.quick-contact {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 6px;
}

.quick-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.quick-contact p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.faq-item {
    flex: 0 0 calc(50% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.thanks-service-info p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.thanks-service-info h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.thanks-next-steps {
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

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

.step-num {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.thanks-contact-info {
    margin-bottom: 2rem;
}

.thanks-contact-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.email-link:hover {
    text-decoration: underline;
}

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

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.legal-date {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.cookies-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--navy);
}

.cookies-table td {
    color: var(--gray);
}

.btn-reset-cookies {
    margin: 1rem 0;
    padding: 0.875rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-reset-cookies:hover {
    background: var(--dark-blue);
}

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

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

    .trust-wrapper,
    .why-content-split,
    .form-split-layout,
    .story-layout,
    .facility-split,
    .contact-layout {
        flex-direction: column;
    }

    .trust-image,
    .why-visual,
    .story-image,
    .facility-image {
        flex: 1;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .services-split-grid {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .testimonials-grid,
    .values-grid,
    .team-stats {
        flex-direction: column;
    }

    .additional-item,
    .faq-item,
    .cert-item {
        flex: 0 0 100%;
    }

    .process-timeline {
        flex-direction: column;
    }

    .expertise-list li {
        flex: 0 0 100%;
    }

    .steps {
        flex-direction: column;
    }

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

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

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

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .trust-section,
    .services-pricing,
    .why-choose,
    .testimonials-section,
    .contact-form-section,
    .final-cta {
        padding: 3rem 1rem;
    }

    .section-header-center h2,
    .why-text h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}