* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #000;
}

header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
}


h1{
    color: #404654;
    font-family: Georgia, serif;

}

header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
    min-height: 80px;
    max-height: 80px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav a {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

nav a:hover,
nav a.active {
    background: #555;
}

.login-link {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.login-link:hover {
    background: #555;
}

.reviews-section {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
}

.reviews-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.review {
    text-align: left;
    margin-bottom: 50px;
    margin-left: 15px;
    padding: 5px;
    border: solid 3px #000;
    border-radius: 10px ;
}

.review p{
    font-size:1.2rem ;
}

.review h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: darkgoldenrod;
}

.review p {
    color: #666;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 24px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.read-more:hover {
    background-color: #000;
}

.button-separate{
    margin: 5px 0;
}

a .create-review{
    text-decoration: none;
    color: black;
    display: inline-block;
    margin-top: 0px;
    padding: 10px 24px;
    background-color: #222;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

a .create-review:visited{
    color: red;
    border-radius:20px ;
}
footer {
    background: #454545;
    color: #fff;
    padding: 40px 20px;
    border-top: #0e0e0e 3px solid;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo svg {
    width: 120px;
}

.footer-contact {
    text-align: center;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
}

@media (max-width: 800px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        margin-left: 0;
    }
}
