body {
    margin: 0;
    font-family: Helvetica Neue, sans-serif;
}

header {
    background-color: #ccdbe6;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    align-items: center;
}

.logo{
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.logo img {
    height: 50px;
}

.logo-text{
	display: flex;
	align-items: center;
	color: #013865;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex: 1px;
}

.menu a {
    text-decoration: none;
    color: #013865;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
}

.menu a:hover {
    color: #f4633a;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
        text-align: center;
    }
}

.menu.active {
    display: flex;
} 

.dropdown{
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 30%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    border-left: 4px solid #003366;
    padding-left: 12px;
}

h1, h2, h3 {
    color: #013865; /* Dark blue color */
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.7em;
}

h3 {
	font-size: 1.5em;
}

.orange-button {
    background-color: #f4633a;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.orange-button:hover {
    background-color: #F79F70;   
}

.orange-button:active {
    transform: scale(0.95);
}

.footer {
    background-color: #013865;
    color: #ffffff;
    width: 100%;
    padding: 20px;           
    box-sizing: border-box;
    margin: 0;
}

.footer main {
    max-width: 90%;
    margin: 0 auto;
}

.footer main img{
    max-width: 40px;
}

.footer p{
	font-size: 10pt;
	line-height: 1;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

.text, p{
	font-size: 13pt;
	line-height: 1.5;
}

.highlight {
    color: red;
}	
