body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #333;
}

header { background: #111; }
.top-bar { display: flex; justify-content: flex-end; padding: 8px 16px; }
.social-icons a { margin: 0 5px; }

.main-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0; padding: 0;
    background: #151515;
}
.main-menu li { margin: 0 12px; }
.main-menu a { color: #fff; text-decoration: none; font-size: 14px; padding: 16px 0; display: block; }

.gallery-section { background: #000; padding: 40px 0; }
.gallery-row { display: flex; justify-content: center; margin-bottom: 16px; }
.gallery-row img { margin: 0 12px; width: 160px; height: 100px; object-fit: cover; border-radius: 3px; }

.announcement-section {
    background: #7b4238;
    color: #fff;
    text-align: center;
    padding: 48px 0 32px 0;
}
.announcement-img img { max-width: 350px; border-radius: 8px; margin-bottom: 28px; }
.announcement-title { font-weight: bold; margin-bottom: 12px; font-size: 18px; }
.btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 18px;
}

.about-section { background: #fff; padding: 56px 16px 24px 16px; text-align: center; }
.about-section h2 { font-weight: 700; margin-bottom: 20px; }
.about-section .btn-secondary { margin: 18px auto; display: inline-block; }
.about-image img { max-width: 400px; margin: 30px auto 0 auto; border-radius: 10px; display: block; }

.cta-section { display: flex; justify-content: center; gap: 28px; background: #e8f5f5; padding: 42px 0; }
.cta-block { background: #fff; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 32px 24px; width: 220px; text-align: center; }
.btn-secondary {
    background: #d4eeee;
    color: #333;
    border: 1px solid #99bcbc;
    padding: 7px 20px;
    border-radius: 18px;
    cursor: pointer;
    margin-top: 12px;
    transition: background .2s;
}
.btn-secondary:hover { background: #badada; }

footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0 7px 0;
    font-size: 13px;
}
.footer-contacts, .footer-copy { margin-bottom: 4px; }

@media (max-width: 820px) {
    .gallery-row img { width: 100px; height: 66px; }
    .cta-section { flex-direction: column; align-items: center; }
}
