:root {
    --primary: #233646;
    --accent: #2dabc1;
    --bg: #f4f7f8;
    --white: #ffffff;
}

body {
    background: var(--bg);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* NAVIGATION & DROPDOWNS */
.glass-nav {
    position: sticky;
    top: 0;
    background: var(--primary);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    height: 70px;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 10px; 
    margin: 0; 
    height: 100%;
}

.dropdown { position: relative; height: 100%; display: flex; align-items: center; }

.nav-links a, .dropbtn { 
    color: rgba(255,255,255,0.8); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600;
    padding: 0 15px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 70px;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 8px 8px;
}

.dropdown-content a {
    color: var(--primary);
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover { background-color: #f1f1f1; color: var(--accent); }
.dropdown:hover .dropdown-content { display: block; }
.nav-links a:hover, .dropdown:hover .dropbtn { color: var(--accent); }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-links { display: none; } /* In a real build, you'd add a Hamburger Menu here */
    .hero h1 { font-size: 2rem; }
}

/* WIDGET UNIFORMITY */
.container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.glass-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Ensure all NowCerts iframes fill the container width */
#nowcerts, iframe { width: 100% !important; min-width: 100%; }