/* SDGs Section */
.sdgs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 100px 0;
}

.sdg-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sdg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2ab737, #3dd04f);
}

.sdg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(42, 183, 55, 0.2);
    border-color: #2ab737;
}

.sdg-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.sdg-number {
    display: none;
}

.sdg-title {
    color: #1e8b2a;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sdg-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    flex-grow: 1;
}
