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;
}

.portfolio {
    text-align: center;
    padding: 50px 20px;
    background: #f8f3f3;
}

.tom p {
    font-size: 20px; 
}

.portfolio h1 {
    font-size: 36px;
    color: #c48b8b;
    margin-bottom: 20px;
}

.portfolio p {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

.service{
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
}

.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;
    
    transition: transform 0.3s ease;
}

.service-item img {
    width: 100%;
    height: 300px;
}

.service-info {
    padding: 10px;
    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;
}