body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6fa;
    color: #222;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar-logo img {
    height: 85px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-links a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.navbar-links a:hover {
    background: #e6eef7;
    color: #00509e;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1;
    top: 100%;
    left: 0;
}

.navbar-dropdown:hover .dropdown-content {
    display: block;
}

.navbar-dropdown .dropdown-content a {
    color: #003366;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0;
    background: none;
}

.navbar-dropdown .dropdown-content a:hover {
    background: #e6eef7;
    color: #00509e;
}

/* Hero section wrapper for layout and width */
.hero {
    background: #e6eef7;
}
.hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 10%;
    width: 100%;
    gap: 2rem;
}
.hero-image {
    width: 600px;
    max-width: 100%;
    min-width: 0;
	max-height:280px;
    object-fit: cover;
    /*border-radius: 8px;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
}
.hero-content {
    flex: 1;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.hero-content h1 {
    margin: 0 0 0.5rem 0;
    color: #25a8e0;
    font-size: 3.0rem;
}

.hero-content p {
    margin: 0;
    color: #555;
    font-size: 1.5rem;
    font-weight:700;
}

.main-content {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    background: #f5f6fa;
    margin: 0 auto;
    box-sizing: border-box;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 10%;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    width: 100%;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: #d1d5db;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-category {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.card h2 {
    margin: 0 0 1rem 0;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.card ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    list-style-type: disc;
    flex-grow: 1;
}

.card ul li {
    margin-bottom: 0.75rem;
}

.card-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: inline-block;
}

.card-link:hover, .card-link:focus {
    color: #1d4ed8;
    text-decoration: underline;
}

.card-link.read-more {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background-color: #25a8e0;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
    border: 1px solid #25a8e0;
}

.card-link.read-more:hover, .card-link.read-more:focus {
    background-color: #1d8ab8;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: #e6eef7;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.sidebar-section h3 {
    margin: 0 0 0.5rem 0;
    color: #003366;
    font-size: 1.1rem;
}

.sidebar-section ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #333;
    font-size: 1rem;
}

.footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.3rem;
    font-size: 0.95rem;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .main-content {
        flex-direction: column;
        max-width: 98vw;
    }
    .sidebar {
        max-width: 100%;
        margin-top: 2rem;
    }
    .card-container {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
    .hero-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    .card {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

@media (max-width: 600px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .main-content {
        padding: 1rem;
        max-width: 100vw;
    }
    .card-container {
        flex-direction: column;
        gap: 1rem;
    }
    .card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* Footer search form styles */
.searchform {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0 1rem 0;
    gap: 0.5rem;
}
.searchform input[type="text"] {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 220px;
    outline: none;
    background-color: #003366;
    color: white;
}
.searchform button {
    padding: 0.5rem 1.2rem;
    background: #003366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.searchform button:hover {
    background: #00509e;
}

/* Hamburger menu styles */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
}
.navbar-toggle .bar {
    width: 26px;
    height: 3px;
    background: #003366;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        z-index: 1000;
    }
    .navbar-links.open {
        display: flex;
    }
    .navbar-toggle {
        display: flex;
    }
    .navbar {
        position: relative;
    }
    .navbar-dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        background: #fff;
        margin-left: 1rem;
    }
}

.footer-disclaimer {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
	max-width: 1550px;
    margin: 0.75em auto;
}

@media (min-width: 1100px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
} 