/* edukacja_i_swiadomosc.css */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    perspective: 1000px;
}

.edu-box {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.edu-box:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.edu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.edu-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #ecfdf5;
    border-radius: 12px;
}

.edu-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111827;
}

.edu-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    flex-grow: 1;
}

.edu-footer {
    padding: 1rem 2rem;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.edu-btn {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #4b5563;
}