@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #002964;
    --secondary-color: #cd9804;
    --background-color: #f2f2f2;
    --text-color: #333;
    --text-color-white: #fff;
    --heading-color: #002964;
    --link-color: #fff;
    --link-hover-color: #cd9804;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.hero-image {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative; 
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.card-container {
    width: 100%;
    height: 700px;
    display: flex;
    max-width: 1100px;
    margin-bottom: 10px;
}

.card {
    width: 100%;
    margin: 20px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
}

.card:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-1%);
}

.card img {
    width: 100%;
    height: 210px;
}

.card .content {
    padding: 15px;
    text-align: center;
}

.card .content p {
    line-height: 1.5;
    color: #6a6a6a;
}

.card .content h3 {
    font-weight: 400;
    margin-bottom: 15px;
}

.card .content a {
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 400ms ease;
}