/* Passions Section */
.passion-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.passion-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26, 58, 46, 0.08);
    border-left: 4px solid #1a3a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 46, 0.15);
}

.passion-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.passion-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}