/* ------------------------------
   GLOBAL RESET
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f7f9fc;
    color: #222;
    line-height: 1.6;
}

/* ------------------------------
   NAVIGATION
--------------------------------*/
header {
    background: #0a2a43;
    padding: 15px 0;
}

.navbar {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a.active {
    border-bottom: 2px solid #4db8ff;
}

.cta-button {
    background: #4db8ff;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #e9f3ff;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.search-box input {
    width: 60%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #0a2a43;
    color: #fff;
}

.btn-secondary {
    background: #4db8ff;
    color: #fff;
}

/* ------------------------------
   PAGE HEADERS
--------------------------------*/
.page-header {
    text-align: center;
    padding: 50px 20px;
    background: #dcecff;
}

.page-header h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* ------------------------------
   CONTENT SECTIONS
--------------------------------*/
.content-section {
    width: 80%;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    margin-bottom: 15px;
    color: #0a2a43;
}

.content-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content-section li {
    margin-bottom: 8px;
}

/* ------------------------------
   FORMS
--------------------------------*/
.intake-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.intake-form button {
    background: #0a2a43;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.form-note {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    padding: 25px;
    background: #0a2a43;
    color: #fff;
    margin-top: 40px;
}

.footer-links a {
    color: #4db8ff;
    text-decoration: none;
}

/* ------------------------------
   CHAT WIDGET PLACEHOLDER
--------------------------------*/
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.chat-bubble {
    background: #0a2a43;
    color: #fff;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}