/* Загальні стилі */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #fdf5e6; /* Світло-бежевий, під колір лого */
    color: #333;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo img {
    height: 80px; /* Розмір вашого логотипу */
    margin-right: 15px;
}

.logo h1 {
    margin: 0;
    font-size: 2.8em;
    color: #4a4a4a; /* Темніший сірий */
}

.tagline {
    font-size: 1.3em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #d2691e; /* Теплий помаранчевий, як у лого */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2em;
}

/* About Section */
.about p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Categories Section */
.categories ul {
    list-style: none;
    padding: 0;
    display: grid; /* Для розташування в колонки */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2-3 колонки */
    gap: 15px;
}

.categories li {
    background-color: #fff8f0; /* Дуже світлий помаранчевий */
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid #ffe7d1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.categories li:hover {
    transform: translateY(-3px);
    background-color: #ffead8;
}

/* Contact Section */
.contact p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact a {
    color: #d2691e; /* Теплий помаранчевий */
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.facebook-link {
    display: inline-block;
    background-color: #3b5998; /* Колір Facebook */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.facebook-link:hover {
    background-color: #2d4373;
}

/* Footer */
footer {
    background-color: #333;
    color: #f4f4f4;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
}