body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #0a1f44;
    color: white;
    padding: 20px 0;
}
header h1{
    text-align: center;

}

.back-to-home {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.back-to-home:hover {
    background-color: #003366;
}

#services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-box h3 {
    color: #0a1f44;
    margin-bottom: 10px;
}

.view-more {
    background-color: #f07f3e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-more:hover {
    background-color: #d96c2c;
}

footer {
    background-color: white;
    color: #333;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-left img {
    height: 80px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.footer-right {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links li a,
.footer-contact li {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.footer-contact li i {
    margin-right: 10px;
    color: #f07f3e;
}

.footer-contact li i.fa-map-marker {
    vertical-align: top;
}

footer a:hover {
    text-decoration: underline;
}