body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #ffcc00;
    color: #333;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #e6e6e6;
}

main {
    padding: 1rem;
}

.block {
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

#offer {
    background: url('offer1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 3rem;
    position: relative;
    border-radius: 10px;
}

.offer-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    display: inline-block;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e6b800;
}

#form label {
    display: block;
    margin: 0.5rem 0;
    font-weight: bold;
}

#form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#products ul, #specialists ul, #reviews ul {
    list-style: none;
    padding: 0;
}

#products li, #specialists li, #reviews li {
    background-color: #f9f9f9;
    padding: 0.5rem;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

#products li:hover, #specialists li:hover, #reviews li:hover {
    background-color: #f0f0f0;
}

#contact p {
    margin: 0.5rem 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
}

@media (max-width: 600px) {
    header, main, footer {
        padding: 0.5rem;
    }

    .block {
        padding: 0.5rem;
    }

    .offer-content {
        padding: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

.cookie-banner {
		position: fixed;
    bottom: 0;
    background-color: #ffe0b2;
    padding: 15px;
    text-align: center;
    border-radius: 10px; /* Более круглые края */
    margin: 10px;
}

.cookie-banner p {
    font-size: 16px;
    margin: 2px;
    color: black;
    font-weight: bold;
}

.cookie-banner a {
    color: #333;
    text-decoration: underline;
}

.privacy-policy-content {
    padding: 30px;
}

#acceptCookieButton {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 12px 24px; /* Padding inside the button */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Increase font size */
    cursor: pointer; /* Pointer/hand icon on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for background color and transform */
}

#acceptCookieButton:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

#acceptCookieButton:active {
    background-color: #3e8e41; /* Even darker green on click */
    transform: scale(1); /* Reset size on click */
}

#acceptCookieButton:focus {
    outline: none; /* Remove outline on focus */
    box-shadow: 0 0 5px #4CAF50; /* Add a green shadow around the button */
}
