
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f2f6f7;
}


.navbar {
    background: #19c5b4;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}


.container {
max-width: 700px;
margin: 120px auto;
background: white;
padding: 30px 40px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


h2 {
text-align: center;
color: #1aaa4b;
margin-bottom: 20px;
}


.highlight {
background: #eef7f1;
padding: 8px;
border-left: 4px solid #1aaa4b;
margin: 6px 0;
}


.section-title {
font-weight: bold;
margin-top: 20px;
color: #333;
}


.contact {
text-align: center;
margin-top: 30px;
}


.contact p {
margin: 6px 0;
}

.footer {
    background-color: #7ee6e6;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-column a {
    color: #5a4bcf;
    text-decoration: none;
    margin: 4px 0;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin: 6px 0;
}


