/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: black;
    border-bottom: 2px solid #ccc;
}

.logo img {
    height: 70px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

/* Services Section */
#services {
    background-color: #111;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: #222;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(25% - 20px); /* Adjust width for responsiveness */
    max-width: 300px;
    text-align: left;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-box p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-box .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-box a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
}

.service-box a:hover {
    text-decoration: underline;
}
