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;
}


.reviews {
    background: #fdf8f5;
    padding: 50px 20px;
    text-align: center;
}

.reviews h1 {
    font-size: 36px;
    color: #c48b8b;
    margin-bottom: 30px;
    font-weight: bold;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.review {
    background: #fff;
    border: 1px solid #e0dede;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review .user-name {
    font-size: 18px;
    font-weight: bold;
    color: #c48b8b;
    margin-bottom: 10px;
}

.review .comment {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.add-review {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.add-review h2 {
    font-size: 24px;
    color: #c48b8b;
    margin-bottom: 20px;
}

.add-review form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.add-review input,
.add-review textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #e0dede;
    border-radius: 5px;
    resize: none;
    box-sizing: border-box;
}

.add-review input:focus,
.add-review textarea:focus {
    border-color: #c48b8b;
    outline: none;
}

.add-review button {
    background: #c48b8b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-review button:hover {
    background: #a87373;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f9ecec;
    color: #777;
}