/* --- 1. General Page Setup --- */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- 2. Header & Navigation --- */
.top-utility-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #f8f8f8;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.right-links span {
    margin-left: 20px;
    cursor: pointer;
}

.logo-area {
    padding: 25px 40px;
}

.logo-area h1 {
    margin: 0;
    font-size: 24px;
    color: #005eb8;
    letter-spacing: 1px;
}

nav {
    border-bottom: 1px solid #ddd;
    background-color: white;
}

nav ul {
    list-style-type: none;
    padding: 0 40px;
    margin: 0;
    display: flex;
    gap: 30px;
    height: 50px;
    align-items: center;
}

nav li a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.2s;
}

nav li a:hover {
    color: #005eb8;
}

/* --- 3. Hero Blue Box & Promo --- */
.hero-blue-box {
    background-color: #005eb8;
    color: white;
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.promo-text h2 {
    font-size: 32px;
    max-width: 500px;
}

.promo-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 450px;
}

.promo-text button {
    background-color: #2c8e10; 
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.promo-text button:hover {
    background-color: #24750d;
    transform: scale(1.05);
}

/* --- 4. Login Box --- */
.login-box {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    width: 340px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.login-box h3 {
    margin-top: 0;
    font-size: 22px;
}

.login-box input[type="text"] {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.password-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.password-container input {
    width: 100%;
    padding: 12px;
    padding-right: 60px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #005eb8;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

.login-box button {
    width: 100%;
    background-color: #005eb8;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

/* --- 5. Info Cards --- */
.info-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background-color: #f4f4f4;
}

.card {
    background-color: white;
    padding: 25px;
    width: 300px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 { color: #005eb8; margin-top: 0; }
.card a { color: #005eb8; text-decoration: none; font-weight: bold; display: block; margin-top: 10px; }

/* --- 6. Icon Section & Dots --- */
.icon-section {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.icon-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.icon-box {
    font-size: 45px;
    margin-bottom: 10px;
}

.icon-item p { color: #005eb8; font-weight: 500; margin: 0; }

.carousel-dots { margin-top: 25px; }

.dot {
    height: 8px; width: 8px; margin: 0 5px;
    background-color: #bbb; border-radius: 50%;
    display: inline-block;
}

.dot.active { background-color: #005eb8; width: 10px; height: 10px; }

/* --- 7. Footer --- */
footer {
    margin-top: auto;
    background-color: #f8f8f8;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #ddd;
}