body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #444;
}

header {
    background: #f9ecec;
    padding: 20px 0;
    position: fixed;
    width: 100%;
}

.logo-img{
    padding: 7px;
    width: 85px;
    height: 50px;
    top: 0;
    position: absolute;
    padding-bottom: 20%;
  }

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #c48b8b;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a46666;
}

.service{
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
}

.service p {
    font-size: 25px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    padding-top: 50px;
}

.service-item {
    background: #fff;
    border: 1px solid #e0dede;
    border-radius: 10px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item img {
    width: 100%;
    height: auto;
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #c48b8b;
}

.service-info p {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
}

.service-info .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c48b8b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.service-info .btn:hover {
    background: #a46666;
}



footer {
    text-align: center;
    padding: 20px;
    background: #f9ecec;
    color: #777;
}