body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.site-header {
    background-color: #4b0082;
    color: white;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    height: 50px;
}

.center-img {
    max-width: 80%;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

.about, .why, .company, .extra, .reviews, .contact-form, .privacy, .cookies {
    background-color: white;
    margin: 30px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reason {
    margin-bottom: 20px;
}

.review {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px auto;
    max-width: 600px;
    text-align: left;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    font-size: 16px;
    background-color: #4b0082;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.site-footer {
    background-color: #2e2e2e;
    color: white;
    padding: 20px 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.cookie-banner button {
    margin-left: 15px;
    padding: 8px 12px;
    background-color: #4b0082;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
