:root {
    --navy: #0b3145;
    --teal: #0f766e;
    --white: #ffffff;
    --text: #1e293b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER & MASSIVE LOGO */
header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
nav { display: flex; justify-content: space-between; align-items: center; }

.logo-container img { 
    height: 250px; /* ENORMOUS size so the words are clearly readable */
    width: auto; 
    display: block; 
}

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 800; font-size: 1.1rem; }
.nav-cta { background: var(--teal); color: white !important; padding: 12px 24px; border-radius: 6px; }

/* HERO - USES YOUR CEDAR CREEK PHOTO */
.hero { 
    background: linear-gradient(rgba(11, 49, 69, 0.6), rgba(11, 49, 69, 0.6)), 
    url('images/background.jpg'); /* LOOKS FOR YOUR PHOTO */
    background-size: cover; 
    background-position: center; 
    padding: 180px 0; 
    color: white; 
    text-align: center; 
}
.hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 25px; line-height: 1.1; }

/* SERVICES */
.services { padding: 100px 0; background: #f8fafc; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 60px; color: var(--navy); font-weight: 900; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-icon { font-size: 3.5rem; color: var(--teal); margin-bottom: 20px; }
.service-card ul { list-style: none; margin-top: 20px; }
.service-card li { margin-bottom: 12px; padding-left: 30px; position: relative; font-weight: 500; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.liaison-box { background: var(--navy); color: white; padding: 50px; border-radius: 20px; text-align: center; margin-top: 40px; }
.l-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }
.l-tags span { background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 50px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

/* PRICING */
.pricing { padding: 80px 0; }
.table-wrapper { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 25px; text-align: left; border-bottom: 1px solid #edf2f7; }
th { background: var(--navy); color: white; text-transform: uppercase; }

/* INTAKE FORM */
.contact { padding: 100px 0; background: #cbd5e1; }
.intake-card { display: grid; grid-template-columns: 1fr 2fr; background: white; max-width: 1000px; margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }
.intake-sidebar { background: var(--navy); color: white; padding: 60px 40px; }
.intake-form-wrapper { padding: 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select { width: 100%; padding: 18px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 1rem; margin-bottom: 20px; }
.submit-btn { width: 100%; background: var(--teal); color: white; padding: 20px; border: none; border-radius: 10px; font-size: 1.2rem; font-weight: 900; cursor: pointer; }

footer { background: #020d14; color: white; padding: 80px 0; text-align: center; }
.footer-logo { height: 150px; margin-bottom: 25px; }

@media (max-width: 850px) {
    .intake-card, .form-row, .service-grid { grid-template-columns: 1fr; }
    .logo-container img { height: 120px; }
}