.page-header {
    padding: 60px 5% 30px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 211, 182, 0.1), transparent);
    border-bottom: 1px solid rgba(94, 55, 25, 0.1);
    margin-bottom: 40px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
    color: #FF806A;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 159, 104, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 159, 104, 0.8);
    }
}

.page-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 60px;
    display: block !important;
    width: 100%;
}

.about-section {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 40px;
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
}

.news-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(94, 55, 25, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(94, 55, 25, 0.25);
}

.news-image {
    height: 180px;
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.news-card-title {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 40px 5% 20px;
    }
}