/*
Author: James Castro
Current Date: 6/28/2025
Class: Main stylesheet for Consano Home Care Inc. website
Description: Professional healthcare website styling with warm, trustworthy design
Browser Compatibility: Supports all modern browsers and IE11+
*/

/* Enhanced CSS Reset for Maximum Browser Compatibility */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for IE and older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden], template {
    display: none;
}

/* Image and media fixes */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
    overflow: hidden;
}

/* Form element fixes */
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

optgroup {
    font-weight: bold;
}

/* Table fixes */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

/* Container and layout utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* IE11 fix */
    -ms-flex: 1 1 auto;
}

/* IE11 and older browser fixes */
.ie-flexbox-fix {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

/* Clearfix for older browsers */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a365d;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #2d3748;
}

a {
    color: #d69e2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b7791f;
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1a365d;
    background-color: rgba(214, 158, 46, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: -webkit-linear-gradient(left, #d69e2e, #f6e05e);
    background: -moz-linear-gradient(left, #d69e2e, #f6e05e);
    background: -o-linear-gradient(left, #d69e2e, #f6e05e);
    background: linear-gradient(90deg, #d69e2e, #f6e05e);
    border-radius: 2px;
}

.contact-btn {
    background: -webkit-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: -moz-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: -o-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    -webkit-box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    -moz-box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.contact-btn:hover {
    background: -webkit-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: -moz-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: -o-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
    -moz-box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

/* Mobile menu toggle */
.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* Page headers */
.page-header {
    background: -webkit-linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    background: -moz-linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    background: -o-linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* IE11 gap fallback */
@supports not (gap: 3rem) {
    .page-header-content > * + * {
        margin-left: 3rem;
    }
}

.page-header-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.page-header-text {
    text-align: left;
}

.page-header-text h1 {
    margin-bottom: 1rem;
}

.page-header-text .page-subtitle {
    text-align: left;
    margin: 0;
}

/* Hero section */
.hero {
    background: -webkit-linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    background: -moz-linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    background: -o-linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d69e2e" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f6e05e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* IE11 gap fallback */
@supports not (gap: 3rem) {
    .hero-container > * + * {
        margin-left: 3rem;
    }
}

.hero-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.availability-notice {
    background: -webkit-linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(246, 224, 94, 0.2) 100%);
    background: -moz-linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(246, 224, 94, 0.2) 100%);
    background: -o-linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(246, 224, 94, 0.2) 100%);
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(246, 224, 94, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #d69e2e;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.availability-notice p {
    color: #1a365d;
    font-weight: 600;
}

.availability-notice strong {
    color: #1a365d;
}

.availability-notice em {
    color: #1a365d;
}

.hero-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* IE11 gap fallback */
@supports not (gap: 1rem) {
    .hero-cta > * + * {
        margin-left: 1rem;
    }
}

.hero-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-logo-large {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: -webkit-linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, rgba(246, 224, 94, 0.1) 100%);
    background: -moz-linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, rgba(246, 224, 94, 0.1) 100%);
    background: -o-linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, rgba(246, 224, 94, 0.1) 100%);
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, rgba(246, 224, 94, 0.1) 100%);
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1.2rem;
    border: 2px dashed rgba(214, 158, 46, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #d69e2e;
    border: 2px solid #d69e2e;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    border-color: #d69e2e;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Service areas section */
.service-areas {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.service-areas-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-areas-image {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.service-areas-content {
    flex: 1;
}

.service-areas-content h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-content .section-intro {
    text-align: center;
    margin-bottom: 0;
}

.areas-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    grid-gap: 1rem;
    margin-top: 2rem;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .areas-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -0.5rem;
    }
    
    .area-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
        flex: 1 1 200px;
        margin: 0.5rem;
    }
}

.area-item {
    background-color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
}

/* Primary service area styling */
.area-item.primary-area {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    font-weight: 700;
    border: 2px solid #b7791f;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    position: relative;
}

.area-item.primary-area:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.area-item.primary-area::before {
    content: "★";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1a365d;
    color: #d69e2e;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Features overview */
.features-overview {
    padding: 4rem 0;
}

.features-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    grid-gap: 2rem;
    margin-top: 3rem;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .features-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -1rem;
    }
    
    .feature-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 250px;
        flex: 1 1 250px;
        margin: 1rem;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #d69e2e;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-medical::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg>');
}

.icon-clock::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12,6 12,12 16,14"/></svg>');
}

.icon-handshake::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>');
}

.icon-star::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>');
}

/* Trust section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 3px solid rgba(214, 158, 46, 0.5);
}

.trust-content h2 {
    color: white !important;
    margin-bottom: 2rem;
}

.trust-content p {
    color: white !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.5rem;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 2px solid #d69e2e;
    border-bottom: 2px solid #d69e2e;
    color: #f6e05e;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

/* Final CTA section */
.final-cta {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-buttons {
    margin: 2rem 0;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Services page specific styles */
.service-overview {
    padding: 4rem 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.core-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-highlight {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.service-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detailed-services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d69e2e;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Ideal clients section */
.ideal-clients {
    padding: 4rem 0;
}

.client-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-profile {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: #f8f9fa;
}

.profile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Trust and reliability section */
.trust-reliability {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.reliability-features {
    margin-top: 2rem;
}

.reliability-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

/* Service availability */
.service-availability {
    padding: 4rem 0;
}

.availability-card {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.availability-card h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.availability-details {
    margin: 2rem 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.availability-details p {
    color: white;
}

.service-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service features section */
.service-features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.feature-highlight {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
}

.feature-highlight h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-highlight p {
    color: #4a5568;
    line-height: 1.6;
}

/* Why Choose Us page styles */
.why-intro {
    padding: 4rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.key-differentiators {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.differentiator {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.differentiator-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
}

.differentiator-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.differentiator-text h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.differentiator-text p {
    color: #1a365d;
}

.differentiator-subtitle {
    color: #1a365d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    margin-top: 2rem;
}

.benefit-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    color: #1a365d;
}

.benefit-item strong {
    color: #1a365d;
}

/* Trust building section */
.trust-building {
    padding: 4rem 0;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-building .trust-content h2 {
    color: #1a365d;
}

.trust-building .trust-content > p {
    color: #2d3748;
}

.understanding-points {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.understanding-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    text-align: left;
}

.understanding-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.understanding-item p {
    color: #2d3748;
}

/* Family approach section */
.family-approach {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.family-approach h2 {
    color: #1a365d;
}

.family-approach .section-intro {
    color: #2d3748;
}

.family-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.family-benefit {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.family-benefit h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.family-benefit ul {
    list-style: none;
}

.family-benefit li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.family-benefit li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* New Why Choose Us Page Styles */

/* Hero Section */
.why-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 3rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-hero .hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.why-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d69e2e;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-top: 0.5rem;
}

.why-hero .hero-image {
    flex: 0 0 300px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.value-content h2 {
    font-size: 2.5rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

.value-description {
    font-size: 1.2rem;
    color: #2d3748;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.value-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Key Differentiators New Section */
.key-differentiators-new {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.differentiators-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(500px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    grid-gap: 3rem;
    margin-top: 3rem;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .differentiators-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3rem;
    }
    
    .differentiator-card {
        width: 100%;
        margin-bottom: 3rem;
    }
}

.differentiator-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-emoji {
    font-size: 1.8rem;
}

.card-title h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-subtitle {
    color: #d69e2e;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

.card-description {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

.benefit-text {
    color: #2d3748;
    line-height: 1.6;
}

.benefit-text strong {
    color: #1a365d;
}

/* Trust Understanding Section */
.trust-understanding {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.trust-intro {
    font-size: 1.2rem;
    color: #2d3748;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.understanding-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.understanding-card:hover {
    transform: translateY(-5px);
}

.understanding-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.understanding-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.understanding-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Family Benefits Section */
.family-benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.benefits-intro {
    font-size: 1.2rem;
    color: #2d3748;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.family-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.family-benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.family-benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-header h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.6;
}

.list-icon {
    flex-shrink: 0;
    color: #d69e2e;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.cta-card {
    background: transparent;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.primary-btn {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #1a365d;
}

.btn-icon {
    font-size: 1rem;
}

.contact-info-box {
    background: transparent;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-label {
    color: #d69e2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d69e2e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #b7791f;
}

.contact-icon {
    font-size: 1.1rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .why-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .why-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .understanding-grid,
    .family-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .why-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-content h2,
    .section-header h2,
    .trust-header h2,
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .differentiator-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* About page styles */
.name-meaning {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.meaning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.meaning-intro {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}

.company-tagline {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    border-radius: 15px;
}

.company-tagline h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.company-tagline p {
    color: white;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Founder section */
.founder-section {
    padding: 4rem 0;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.founder-credentials {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.credentials-list {
    margin-top: 1.5rem;
}

.credential-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.founder-vision {
    margin-top: 3rem;
}

/* Mission section */
.mission-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.mission-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.mission-statement {
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-align: center;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar h3 {
    color: white;
    margin-bottom: 1rem;
}

.pillar p {
    color: #ecf0f1;
}

/* Values section */
.values-section {
    padding: 4rem 0;
}

.values-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Difference section */
.difference-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.difference-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.difference-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.difference-item {
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.difference-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Community section */
.community-section {
    padding: 4rem 0;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-promise {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.community-promise h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* About CTA */
.about-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ecf0f1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.tagline-reminder {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.tagline-reminder p {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-style: italic;
}

/* Contact page styles */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.primary-contact {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
}

.primary-contact h2,
.primary-contact h3 {
    color: white;
}

.primary-contact p {
    color: #ecf0f1;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 0.5rem;
}

/* Hours card */
.hours-card {
    background-color: white;
    border: 2px solid #ecf0f1;
}

.hours-info {
    margin-top: 1rem;
}

.hours-section {
    margin-bottom: 2rem;
}

.hours-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.day {
    font-weight: 600;
}

.time {
    color: #555;
}

.hours-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Launch info */
.launch-info {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.launch-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.launch-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.launch-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.launch-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Priority intake */
.priority-intake {
    padding: 3rem 0;
}

.intake-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.intake-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.intake-intro {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intake-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #ecf0f1;
    font-size: 0.9rem;
}

.intake-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.intake-cta h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.intake-cta p {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Blog page styles */
.blog-intro {
    padding: 4rem 0;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-preview {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.upcoming-topics {
    margin-top: 3rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.topic-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Testimonials page styles */
.testimonials-placeholder {
    padding: 4rem 0;
}

.placeholder-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.placeholder-message {
    margin-bottom: 4rem;
}

.placeholder-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.future-testimonials {
    margin-top: 4rem;
}

.testimonial-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-type {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-type h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.commitment-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.commitment-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.testimonial-preview {
    padding: 4rem 0;
}

.preview-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.preview-stories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.preview-story {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.story-quote p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.share-invitation {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.invitation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.invitation-promise {
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.invitation-promise h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.testimonials-contact {
    padding: 4rem 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta {
    margin-top: 2rem;
}

.testimonials-tagline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.tagline-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.humble-closing {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-note {
    font-style: italic;
    color: #555;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d69e2e;
}

/* Social media styles */
.social-media {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.25rem;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #e2e8f0;
}

.social-link:hover {
    background-color: rgba(214, 158, 46, 0.2);
    color: #d69e2e;
    transform: translateY(-1px);
}

.social-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 400;
    font-size: 0.7rem;
}

/* Footer Links */
.footer-links {
    padding: 2rem 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin: 2rem 0 1rem 0;
}

.footer-links-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links-section a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links-section a:hover {
    color: #d69e2e;
    background-color: rgba(214, 158, 46, 0.1);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0.5rem 0;
}

/* Responsive Design - Mobile First Approach */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .why-hero h1 {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .understanding-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .family-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 1140px;
        padding: 0 25px;
    }
    
    .why-hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .understanding-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .family-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .why-hero .container {
        flex-direction: row;
        gap: 3rem;
    }
    
    .why-hero h1 {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .understanding-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .family-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    
    .page-header-content {
        flex-direction: row;
        text-align: left;
    }
    
    .page-header-text {
        text-align: left;
    }
    
    .page-header-text .page-subtitle {
        text-align: left;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .why-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .why-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .understanding-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .family-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .differentiator-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .card-header {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .page-header-text .page-subtitle {
        text-align: center;
    }
    
    .service-areas-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile Landscape (480px to 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .container {
        max-width: 540px;
        padding: 0 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .why-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .why-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 0.7rem;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentiator-card {
        padding: 2rem;
    }
    
    .understanding-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .family-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-title h3 {
        font-size: 1.3rem;
    }
    
    .section-header h2,
    .trust-header h2,
    .benefits-header h2,
    .value-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2.2rem;
    }
}

/* Mobile Portrait (up to 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-logo .company-name {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .why-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .why-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        padding: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-header h2,
    .trust-header h2,
    .benefits-header h2,
    .value-content h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentiator-card {
        padding: 1.5rem;
    }
    
    .understanding-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .family-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .service-areas-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .service-areas-content h2 {
        text-align: center;
    }
    
    .service-areas-content .section-intro {
        text-align: center;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .page-header-text .page-subtitle {
        text-align: center;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .differentiator-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-title h3 {
        font-size: 1.2rem;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-point {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .understanding-card {
        padding: 2rem 1.5rem;
    }
    
    .family-benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .why-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-header h2,
    .trust-header h2,
    .benefits-header h2,
    .value-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .nav-logo .company-name {
        font-size: 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .differentiator-card {
        padding: 1.2rem;
    }
    
    .highlight-item {
        padding: 1.5rem 1rem;
    }
    
    .understanding-card {
        padding: 1.5rem 1rem;
    }
    
    .family-benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-card {
        padding: 1.5rem 0.8rem;
    }
    
    .stat-item {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
}

/* Specific white text styles for readability */
.service-availability .availability-card > p {
    color: white !important;
}

.company-tagline p {
    color: white !important;
}

/* Privacy Policy page styles */
.privacy-intro {
    padding: 4rem 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    padding: 3rem 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-card h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d69e2e;
}

.privacy-card ul {
    list-style: none;
    margin-top: 1rem;
}

.privacy-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d69e2e;
    font-weight: bold;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sharing-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #d69e2e;
}

.sharing-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: #d69e2e;
    transform: translateY(-3px);
}

.right-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.right-item p {
    font-size: 0.9rem;
    color: #4a5568;
}

.privacy-updates {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.updates-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #d69e2e;
}

.updates-card h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.update-notice {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.update-notice h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.update-notice ul {
    list-style: none;
}

.update-notice li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.update-notice li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.privacy-contact {
    padding: 4rem 0;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-method h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #4a5568;
}

.contact-method a {
    color: #d69e2e;
    font-weight: 600;
}

.compliance-notice {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.compliance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.compliance-content h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.compliance-content p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.compliance-content ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-content li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e2e8f0;
}

.compliance-content li::before {
    content: "⚖️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.compliance-content em {
    color: #d69e2e;
    font-style: italic;
    display: block;
    margin-top: 2rem;
}

/* Form Styles */
.contact-form-section,
.intake-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.form-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container,
.intake-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form,
.intake-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.section-title {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d69e2e;
}

.section-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Form Rows and Groups */
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* IE11 gap fallback */
@supports not (gap: 1.5rem) {
    .form-row > * + * {
        margin-left: 1.5rem;
    }
}

.form-group {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-group label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d69e2e;
    -webkit-box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background-color: #e2e8f0;
    border-color: #d69e2e;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #d69e2e;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #2d3748;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #1a365d;
    font-weight: 600;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: -webkit-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: -moz-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: -o-linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    color: #1a365d;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    -moz-box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    text-decoration: none;
    font-family: inherit;
}

.submit-btn:hover {
    background: -webkit-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: -moz-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: -o-linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    background: linear-gradient(135deg, #b7791f 0%, #d69e2e 100%);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
    -moz-box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 3rem;
    background: -webkit-linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    background: -moz-linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    background: -o-linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-radius: 20px;
    border: 2px solid #68d391;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #22543d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: #2f855a;
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .contact-form-container,
    .intake-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* IE11 gap fallback */
    @supports not (gap: 1rem) {
        .form-row > * + * {
            margin-left: 0;
            margin-top: 1rem;
        }
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .intake-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container,
    .intake-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .checkbox-item {
        padding: 0.75rem;
    }
    
    .checkbox-item label {
        font-size: 0.9rem;
    }
    
    .form-success h3 {
        font-size: 1.6rem;
    }
    
    .form-success p {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .hero-cta,
    .contact-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
