:root {
    --primary-color: #213448;
    --accent-color: #2c587d;
    --background-color: #f5f8fc;
    --text-dark: #213448;
    --color-highlight: #EB8317;
    --text-light: #666;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.nav-container {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.nav-links a {
    margin: 0 15px;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.menu-bar {
    background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
    padding: 20px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.logo img {
    height: 80px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.search-bar-inline {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.search-input-wrapper input {
    width: 100%;
    padding: 10px 30px 10px 18px;
    border: 3px solid #213448;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    color: #213448;
    background-color: #fdfdfd;
    box-shadow: inset 0 0 5px rgba(33, 52, 72, 0.2);
    transition: border 0.3s ease;
}

.search-input-wrapper input:focus {
    border-color: #1d5a96;
    outline: none;
}

.clear-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    display: none;
    transition: color 0.2s;
}

.clear-icon:hover {
    color: #000;
}

.search-input-wrapper.has-value .clear-icon {
    display: block;
}

.search-bar-inline button {
    padding: 10px 22px;
    background: #213448;
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.search-bar-inline button:hover {
    background: #1d5a96;
}

.suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #213448;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(33, 52, 72, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.suggestions li {
    padding: 14px 18px;
    font-weight: bold;
    color: #213448;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestions li:hover {
    background-color: #f0f4f8;
}

.buttons button {
    padding: 10px 18px;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #e2e8f0;
}

footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    margin-top: 40px;
}

.contact-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.contact-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-section form label {
    font-weight: 600;
    display: block;
    margin-top: 18px;
    color: var(--text-dark);
}

.contact-section form input,
.contact-section form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.contact-section form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section form button {
    margin-top: 25px;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section form button:hover {
    background-color: var(--accent-color);
}

.msg-error {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}