:root {
    --primary-gold: #ec971f;
    --primary-green: #8ab933;
    --accent-red: #bb4848;
    --light-blue: #eef7ff;
    --dark-blue: #1d3557;
    --text-dark: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px; /* High legibility for seniors */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

/* Typography sizing for better accessibility */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark-blue);
}

.text-gold { color: var(--primary-gold) !important; }
.text-green { color: var(--primary-green) !important; }
.text-red { color: var(--accent-red) !important; }

.bg-gold { background-color: var(--primary-gold) !important; color: white; }
.bg-green { background-color: var(--primary-green) !important; color: white; }
.bg-light-blue { background-color: var(--light-blue) !important; }

/* Navbar Customization */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
    border-bottom: 1px dotted var(--primary-green);
    background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #ffa500 100%);
}
.logo{
    height: 90px;
}
.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
}
.navbar-brand span {
    color: white;
}
.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-left: 20px;
    font-size: 17px;
}
.nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
    padding: 80px 0 60px 0;
    position: relative;
}
.hero-badge {
    background-color: rgba(206, 4, 4, 0.1);
    color: var(--accent-red);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(206, 4, 4, 0.2);
}
.btn-hero {
    background-color: var(--primary-gold);
    color: white;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 19px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 151, 31, 0.3);
}
.btn-hero:hover {
    background-color: #d68413;
    color: white;
    transform: translateY(-2px);
}

/* Info Section / Trust Features */
.info-section {
    padding: 40px 0;
}
.trust-card {
    border: none;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}
.trust-card:hover {
    transform: translateY(-5px);
}
.trust-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Portals Section */
.portals-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}
.portal-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    border: 1px solid #eee;
}
.portal-item:last-child{
    margin-bottom: 0px;
}
.portal-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.btn-portal {
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

/* Photo Placeholder Design */
.image-placeholder {
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    height: 100%;
}

.image-placeholder img{
    width: 100%;
    max-width: 100%;
    border-radius: 15px
}

.portal-item .image-placeholder{
    border: 1px dotted #dee2e6;
}

.portal-item .image-placeholder img.left{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.portal-item .image-placeholder img.right{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Contact & Phone Highlighting */
.contact-highlight {
    background-color: var(--light-blue);
    border-left: 6px solid var(--primary-gold);
    padding: 30px;
    border-radius: 0 12px 12px 0;
}
.phone-link {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-red) !important;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.phone-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: #ecf0f1;
    padding: 60px 0 30px 0;
    font-size: 16px;
}
footer h5 {
    color: white;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 15px;
}

.blend{
    padding:  48px;
    display: flex;
    justify-content: center;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 56px;
    left: 0;
    bottom: 16px;
    right: 0;
    backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    .navbar{padding-bottom: 15px}
    .blend{padding: 8px}
    .portal-item .image-placeholder img.left, .portal-item .image-placeholder img.right {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .phone-link{font-size: 26px}
    .p-5 {padding: 22px !important;}
    .hero-section{padding-bottom: 18px; padding-top: 48px}
}