/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== News Content ===== */
.news-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.news-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.news-item {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.news-date {
    font-size: 12px;
    color: #1a5f4a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    color: #1a5f4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #2d8659;
    transform: translateX(3px);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.pagination-link {
    color: #1a5f4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    color: #2d8659;
}

.pagination-link:disabled,
.pagination-link.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination-current {
    font-size: 14px;
    color: #666666;
}

/* ===== CTA Final ===== */
.cta-final {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.cta-final p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    color: #1a1a1a;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    padding: 12px 24px;
    background-color: white;
    color: #1a5f4a;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #f5f5f0;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .news-item {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .cta-final h2 {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}
