body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333333;
}

header {
    background-color: #373174;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    height: 70px;
    width: 200px;
    margin-right: 2rem;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #141B25;
    border-radius: 5px;
    color: #FFD700;
}

.services {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f9 100%);
}

.services h1 {
    color: #373174;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
}

.services h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: #FFD700;
    margin: 10px auto;
}

.service-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin: 1rem auto;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 300px;
    width: 300px;
    margin-right: 2rem;
    border-radius: 12px;
    object-fit: cover;
}

.service-description {
    text-align: left;
    flex: 1;
}

.service-description h2 {
    color: #373174;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-description p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
}
