:root {
    --primary-light: #1b4ebc;
    --primary-dark: #030e56;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f8fc;
}
header {
    background-color: var(--primary-dark);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}
header a.logo-link img {
    height: 50px;
}
.nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.nav-buttons a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--primary-light);
}
.slogan-section {
    text-align: center;
    padding: 20px 8px;
    background-color: #e9edfb;
    color: var(--primary-dark);
    font-size: 1.2rem;
}
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(30, 60, 120, 0.08);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    border-radius: 0 0 12px 12px;
}
.slide-img.active {
    opacity: 1;
    z-index: 2;
}
@media (max-width: 900px) {
    .slider-container, .slide-img { height: 160px; }
}
@media (max-width: 600px) {
    .slider-container, .slide-img { height: 100px; }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-buttons {
        justify-content: center;
        width: 100%;
    }
}
.search-container {
    background-color: white;
    padding: 40px 20px 20px 20px;
    text-align: center;
}
.search-container h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
}
.search-box {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
input[type="text"] {
    width: 70%;
    min-width: 250px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    padding: 12px 20px;
    font-size: 1rem;
    background-color: var(--primary-light);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.search-results {
    margin: 24px auto 0 auto;
    max-width: 600px;
    text-align: left;
}
.search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f6f7fb;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(30,60,120,0.04);
    border: 1px solid #dbe7fa;
    max-height: 400px;
    overflow-y: auto;
}
.search-results li {
    padding: 15px 20px;
    border-bottom: 1px solid #e9edfb;
    cursor: pointer;
    color: #1b4ebc;
    font-size: 1rem;
    transition: background 0.15s;
    word-break: break-word;
}
.search-results li:last-child {
    border-bottom: none;
}
.search-results li:hover {
    background: #e9edfb;
    color: #030e56;
}
.no-results {
    text-align: center;
    color: #c00;
    margin-top: 14px;
    font-weight: bold;
}
.footer {
    background-color: #f1f1f1;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
}
.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.social-icons a img {
    width: 24px;
    height: 24px;
}
.footer p {
    margin: 0;
    font-size: 0.85rem;
    text-align: center;
}