/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

textarea {
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.primary {
    color: #04acec;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 20px;
    color: #fff;
}

.sticky {
    position: sticky;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

header .nav-links li {
    display: inline;
}

header .nav-links a {
    color: #fff;
    font-size: 18px;
}

.hero {
    background-color: #04519c;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero .cta-button {
    background-color: #fff;
    color: #04519c;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
}

section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.about, .contact, .services {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service {
    margin: 20px 0;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 18px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 14px;
}