body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.logo {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    flex: 1;
    padding: 20px;
}

.cat-articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

article {
    background: #fff;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-image {
    max-width: 100%;
    border-radius: 5px;
    margin: 20px 0;
}

.centered-block {
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    text-align: center;
}

section {
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
}

form label {
    margin: 5px 0;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 80%;
}

form button {
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 80%;
}

form button:hover {
    background: #555;
}

#successMessage {
    margin-top: 10px;
    color: green;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

h1, h2, h3 {
    color: #333;
    margin-top: 20px;
}

ul {
    margin-left: 20px;
}

p {
    margin-bottom: 15px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    display: none;
    z-index: 1000;
}

.cookie-consent p {
    margin: 0 0 10px;
}

.cookie-consent button {
    margin: 0 5px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-consent button#acceptCookies {
    background: #4CAF50;
    color: white;
}

.cookie-consent button#declineCookies {
    background: #f44336;
    color: white;
}

