/* Global Typography & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #1e3a52;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------
   HEADER STYLES
---------------------------------- */
.site-header {
    background-color: #e0f7fa;
    border-bottom: 1px solid #b2ebf2;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #1e3a52;
    text-transform: uppercase;
}

.brand-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
}

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

.nav-menu li {
    border-right: 1px solid #b2ebf2;
    padding: 0 15px;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    font-size: 13px;
    color: #1e3a52;
    font-weight: 500;
}

.header-right {
    text-align: right;
    font-size: 12px;
}

.header-right .blue-pages {
    font-weight: bold;
    text-decoration: underline;
}

/* ----------------------------------
   HERO SECTION (INDEX)
---------------------------------- */
.hero-section {
    background-color: #ffffff;
    padding: 60px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
}

.hero-content {
    max-width: 50%;
}

.hero-content h2 {
    font-size: 16px;
    font-weight: normal;
    color: #555;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1e3a52;
    margin: 10px 0;
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-content p.tagline {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    background-color: #1e3a52;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 2px;
    font-size: 14px;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffff72;
    color: #1e3a52;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 15px;
}

/* Sub-nav Bar */
.sub-nav-bar {
    display: flex;
    background-color: #1e3a52;
    color: #ffffff;
}

.sub-nav-item {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    border-right: 1px solid #2c5270;
}

.sub-nav-item.active-light {
    background-color: #b2ebf2;
    color: #1e3a52;
}

/* ----------------------------------
   CONTENT SECTIONS & CARDS
---------------------------------- */
.section-container {
    padding: 60px 8%;
    text-align: center;
}

.section-container h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-container p.subtext {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 14px;
    color: #444;
}

/* 3-Column Features */
.features-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.feature-card {
    flex: 1;
    font-size: 13px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #1e3a52;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* 5-Column Packages/Promos Grid */
.promos-section {
    background-color: #e0f7fa;
    padding: 50px 5%;
}

.promos-grid {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.promo-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
}

.promo-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.promo-card h4 {
    font-size: 13px;
    margin: 10px 0 5px 0;
}

.promo-card p {
    font-size: 11px;
    color: #666;
    padding: 0 8px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #1e3a52;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #1e3a52;
}

/* ----------------------------------
   FOOTER STYLES
---------------------------------- */
.site-footer {
    background-color: #1e3a52;
    color: #ffffff;
    padding: 50px 8%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 12px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact-info p {
    margin-top: 10px;
}