body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('background.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2,
.hero p {
    margin: 0;
    z-index: 3;
    position: relative;
}

#logotext {
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

#services,
#about,
#testimonials,
#contact {
    padding: 30px 0;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h3 {
    margin-bottom: 15px;
}

.testimonial {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.social-media {
    margin: 20px 0;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    transition: transform 0.2s ease;
}

.social-media img:hover {
    transform: scale(1.1);
}

a {
    color: #0066cc;
    /* A deep blue that matches the professional theme */
    text-decoration: none;
    /* Remove the underline */
    font-weight: bold;
    /* Make the text bold for better visibility */
    padding: 5px 10px;
    /* Add some padding for spacing */
    border-radius: 5px;
    /* Round the edges slightly */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition for hover effects */
}

a:hover {
    background-color: #0066cc;
    /* Change the background to the link color on hover */
    color: #fff;
    /* Change the text color to white on hover */
}