@font-face {
    font-family: 'Montserrat';
    src: url('font/montserrat-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6eef1;
}

header {
    background-color: #006e8c;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

.page-title {
    font-size: 18px;
    font-style: italic;
    margin-left: 10px;
}

.nav-item {
    margin-left: 20px;
    color: white;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #006e8c;
    font-size: 50px;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: linear-gradient(45deg, #0C688A, #00C6FF);
    color: white;
    padding: 40px 20px;
    border-radius: 5px;
    width: 500px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
}