/* Reset some basic elements */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
    /* Adjust as needed */
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 1rem;
}

nav ul li {
    margin-left: 20px;
}

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

#hero {
    background: #007bff;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

section {
    padding: 2rem;
    background: #fff;
    margin: 1rem 0;
}

.service {
    margin-bottom: 1rem;
}

.tech-scroller {
    display: flex;
    overflow-x: auto;
    padding: 1rem 0;
}

.tech-item {
    flex: 0 0 auto;
    margin-right: 1rem;
    padding: 1rem;
    background: #ddd;
    border-radius: 5px;
    /* Add more styling as needed */
}

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

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

.expertise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.expertise-item {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .expertise-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .expertise-item {
        flex: 1 1 100%;
    }
}

/* Styles for expertise list view */
.offers .expertise-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.offers .expertise-container li {
    margin-bottom: 1rem;
}

.offers .expertise-container a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: inline-block;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 2px solid transparent;
}

.offers .expertise-container a:hover {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}
