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

.like {
  text-decoration: none;
}

.like:hover {
  color: pink;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    background: #FF9840;
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 8px;
}

.site-header {
    background: #FF9840;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header .container {
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav a {
    margin: 0 0.75rem;
    text-decoration: none;
    color: #555;
    font-weight: 700;
    transition: color 0.3s ease;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.gallery-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    border: 1px solid #A65C00;
    border-radius: 5px;
    padding: 1rem;
}

.gallery-item img {
    width: 150px;
    height: 150px;
}

.news-item {
    border-bottom: 1px solid #A65C00;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.responsive-grid-table {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.responsive-grid-table-thead,
.responsive-grid-table-body,
.responsive-grid-table-row {
    display: contents;
}

.responsive-grid-table-head {
    background-color: #2c3e50;
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
}

.responsive-grid-table-cell {
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.responsive-grid-table-body tr:nth-child(even) > * {
    background-color: #f9f9f9;
}

.responsive-grid-table-body tr:nth-child(odd) > * {
    background-color: #ffffff;
}

footer {
    text-align: center;
    margin-top: 2rem;
    background: #333;
    color: white;
}

footer .container {
    padding: 1.5rem;
}

.footer-banner {
    background: #e67e22;
    color: white;
    padding: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-banner {
        display: none;
    }
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-nav a {
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
    }
    .gallery-item {
        flex-basis: 350px;
    }
}

.chart-container {
    height: 400px;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(166, 92, 0, 0.2);
}

@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }
}
