.protection-intro {
    text-align: center;
    padding: 2rem;
    background-color: #fefdfd;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.protection-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.challenge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.challenge-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
}

.challenge-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.measures-section {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.measure-item {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.measure-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.measure-title {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.participation-section {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.participation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.participation-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.participation-item:hover {
    transform: translateY(-5px);
}

.news-section {
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.news-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}